-
Notifications
You must be signed in to change notification settings - Fork 257
/
package.json
executable file
·207 lines (207 loc) · 8.1 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
{
"private": true,
"name": "@wso2is/webapps",
"version": "2.0.0",
"description": "WSO2 Identity Server Web Applications",
"keywords": [
"WSO2",
"WSO2 IS",
"WSO2 Identity Server",
"WSO2 Identity Apps"
],
"author": "WSO2",
"license": "Apache-2.0",
"repository": "https://github.com/wso2/identity-apps.git",
"scripts": {
"build": "pnpm nx run-many --target=build --all",
"build:apps": "pnpm nx run-many --target=build --projects=console,myaccount",
"build:modules": "pnpm nx run-many --target=build --projects=access-control,dynamic-forms,core,forms,form,i18n,react-components,theme,validation",
"clean": "pnpm nx run-many --target=clean --all --parallel=false && pnpm clean:root",
"clean:root": "pnpm clean:root:cache && pnpm clean:root:lock-files && pnpm clean:root:maven-folders & pnpm clean:root:node-modules",
"clean:root:cache": "pnpm rimraf npm",
"clean:root:lock-files": "pnpm rimraf yarn.lock",
"clean:root:node-modules": "pnpm rimraf node_modules",
"clean:root:maven-folders": "pnpm rimraf target",
"nx": "nx",
"nyc:full-report": "pnpm nyc report --reporter=lcov --reporter=text",
"nyc:text-report": "pnpm nyc report --reporter=text",
"nyc:text-summary-report": "pnpm nyc report --reporter=text-summary",
"publish:packages": "pnpm build && changeset publish",
"version:packages": "changeset version && pnpm install --lockfile-only",
"test": "pnpm run test:unit",
"test:watch": "pnpm run test -- --watch",
"test:unit": "pnpm nx run-many --target=test --all --exclude=form,forms,unit-testing",
"test:unit:coverage": "pnpm nx run-many --target=test-coverage --all --exclude=form,forms,unit-testing",
"test:unit:coverage:aggregate": "node scripts/aggregate-unit-test-coverage.js",
"test:unit:coverage:aggregated": "pnpm run test:unit:coverage && pnpm run test:unit:coverage:aggregate",
"update-version": "node scripts/update-version.js",
"lint": "pnpm nx run-many --target=lint --all --parallel",
"lint:autofix": "pnpm nx run-many --target=lint:autofix --all --parallel",
"typecheck": "pnpm nx run-many --target=typecheck --all --parallel"
},
"dependencies": {
"@svgr/webpack": "^6.1.2",
"@swc/helpers": "0.5.9",
"await-semaphore": "^0.1.3",
"axios": "^0.21.1",
"babel-jest": "^26.3.0",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"crypto-js": "^3.1.9-1",
"final-form": "^4.20.2",
"history": "^4.9.0",
"i18next-browser-languagedetector": "^6.1.5",
"i18next-xhr-backend": "^3.2.2",
"js-beautify": "^1.13.0",
"jshint": "^2.13.4",
"jsrsasign": "^10.5.26",
"lodash-es": "^4.17.21",
"moment": "^2.29.4",
"node-forge": "^0.10.0",
"rc-tree": "^4.0.0-beta.2",
"react-app-polyfill": "^1.0.4",
"react-final-form": "^6.5.3",
"react-head": "^3.3.0",
"react-helmet": "^5.2.1",
"react-notification-system": "^0.4.0",
"react-redux": "^7.2.9",
"react-router-dom": "^4.3.1",
"react-top-loading-bar": "^1.2.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.14.5",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs3": "^7.11.2",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.1",
"@nx/devkit": "17.0.0",
"@nx/jest": "17.0.0",
"@nx/js": "17.0.0",
"@nx/plugin": "17.0.0",
"@nx/react": "17.0.0",
"@nx/rollup": "17.0.0",
"@nx/storybook": "17.0.0",
"@nx/web": "17.0.0",
"@nx/webpack": "17.0.0",
"@nx/workspace": "17.0.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@storybook/core-server": "7.6.9",
"@storybook/react": "7.6.9",
"@storybook/react-webpack5": "7.6.9",
"@svgr/webpack": "8.1.0",
"@swc-node/register": "1.6.8",
"@swc/cli": "0.1.65",
"@swc/core": "1.3.99",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@testing-library/user-event": "^14.5.2",
"@types/crypto-js": "^3.1.43",
"@types/history": "^4.7.3",
"@types/i18next": "8.4.3",
"@types/i18next-xhr-backend": "^1.4.2",
"@types/jest": "29.4.4",
"@types/js-beautify": "^1.8.2",
"@types/lodash-es": "^4.17.4",
"@types/node": "18.11.9",
"@types/node-forge": "^0.9.3",
"@types/react-notification-system": "0.2.39",
"@types/react-redux": "^7.1.25",
"@types/react-router-dom": "^5.1.3",
"@types/redux-mock-store": "^1.0.2",
"@types/webappsec-credential-management": "^0.6.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"autoprefixer": "10.4.13",
"babel-jest": "29.4.3",
"babel-loader": "^8.1.0",
"babel-plugin-rename-jsx-attribute": "^0.2.4",
"child_process": "^1.0.2",
"compression-webpack-plugin": "^7.1.2",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.6.5",
"css-loader": "^6.4.0",
"dotenv": "^16.0.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-header": "jeradrutnam/eslint-plugin-header#main",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"eslint-webpack-plugin": "^2.5.3",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"fast-xml-parser": "^3.15.0",
"file-loader": "^2.0.0",
"fork-ts-checker-webpack-plugin": "^6.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.3",
"html-webpack-plugin": "^5.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "29.4.3",
"jsonc-eslint-parser": "^2.1.0",
"lerna": "^5.1.2",
"less-loader": "^5.0.0",
"less-plugin-inline-urls": "^1.2.0",
"less-plugin-npm-import": "^2.1.0",
"less-plugin-rewrite-import": "^0.1.1",
"less-vars-to-js": "^1.3.0",
"lodash": "^4.17.21",
"markdown-toc": "^1.2.0",
"mini-css-extract-plugin": "^0.4.3",
"nx": "17.0.0",
"nyc": "^15.1.0",
"postcss-loader": "^3.0.0",
"prettier": "^1.19.1",
"process": "^0.11.10",
"prop-types": "^15.7.2",
"raw-loader": "^4.0.2",
"react-hot-loader": "^4.13.0",
"react-refresh": "^0.10.0",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.2",
"simple-git": "^1.129.0",
"source-map-loader": "^0.2.4",
"storybook": "7.6.9",
"style-loader": "^3.3.0",
"stylus": "0.59.0",
"stylus-loader": "^7.1.0",
"terser-webpack-plugin": "^5.1.1",
"thread-loader": "^2.1.3",
"ts-jest": "29.1.5",
"ts-loader": "^6.0.1",
"tslib": "^2.0.0",
"typescript": "5.1.6",
"url-loader": "^4.1.1",
"watch": "^1.0.2",
"webpack": "5.92.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0",
"worker-loader": "^2.0.0",
"write-file-webpack-plugin": "^4.5.1"
},
"pnpm": {
"overrides": {
"@mui/material": "5.13.0",
"@types/react": "18.0.18",
"webpack": "5.84.1"
}
},
"engines": {
"node": ">=16",
"pnpm": ">=8"
}
}