forked from wso2/identity-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·194 lines (194 loc) · 9.44 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
{
"private": true,
"name": "@wso2is/webapps",
"version": "1.4.25",
"description": "WSO2 Identity Server Web Applications",
"keywords": [
"WSO2",
"WSO2 IS",
"WSO2 Identity Server",
"WSO2 Identity Apps"
],
"repository": "https://github.com/wso2/identity-apps.git",
"scripts": {
"bootstrap": "npm install && npx lerna bootstrap",
"bootstrap:hoist": "npm install && npx lerna bootstrap --hoist --no-ci",
"build:dev": "npm run bootstrap && npm run build -- --ignore @wso2is/theme && npx lerna run build:dev --stream --scope @wso2is/theme",
"build": "npx lerna run build --stream",
"build:apps": "npx lerna run build --stream --scope '{@wso2is/myaccount,@wso2is/console}'",
"build:modules": "npx lerna run build --stream --scope '{@wso2is/access-control,@wso2is/core,@wso2is/forms,@wso2is/form,@wso2is/i18n,@wso2is/react-components,@wso2is/theme,@wso2is/validation}'",
"build:external": "npx lerna run build --stream --ignore '{@wso2is/console,@wso2is/myaccount}' && npx lerna run build:external --stream --scope '{@wso2is/console,@wso2is/myaccount}'",
"build:external:static": "npx lerna run build --stream --ignore '{@wso2is/console,@wso2is/myaccount}' && npx lerna run build:external:static --stream --scope '{@wso2is/console,@wso2is/myaccount}'",
"build:theme": "npx lerna run build --stream --scope @wso2is/theme && npx lerna run copy:themes:src --stream --scope '{@wso2is/myaccount,@wso2is/console}'",
"clean": "npx lerna run clean --stream",
"clean-all": "npm run remove-package-lock && npm run remove-maven-folders && npm run remove-node-modules",
"nyc:full-report": "npx nyc report --reporter=lcov --reporter=text",
"nyc:text-report": "npx nyc report --reporter=text",
"nyc:text-summary-report": "npx nyc report --reporter=text-summary",
"remove-node-modules": "npx lerna exec -- rimraf -rf node_modules && rimraf -rf node_modules",
"remove-package-lock": "npx lerna exec -- rimraf -rf package-lock.json && rimraf -rf package-lock.json",
"remove-maven-folders": "npx lerna exec -- rimraf -rf target npm ./apps/myaccount/src/main ./apps/console/src/main && rimraf -rf target npm ./apps/user-portal/src/main ./apps/console/src/main",
"test": "npm run test:unit",
"test:watch": "npm run test -- --watch",
"test:integration": "npx lerna run test --scope @wso2is/integration-tests",
"test:integration:smoke": "npx lerna run test:smoke --scope @wso2is/integration-tests",
"test:integration:interactive": "npx lerna run test:interactive --scope @wso2is/integration-tests",
"test:unit": "npx lerna run test --stream --ignore '{@wso2is/integration-tests,@wso2is/form}'",
"test:unit:coverage": "npm run test:unit -- -- -- --coverage --collect-coverage",
"test:unit:coverage:aggregate": "node scripts/aggregate-unit-test-coverage.js",
"test:unit:coverage:aggregated": "npm run test:unit:coverage && npm run test:unit:coverage:aggregate",
"test:unit:apps": "npx lerna run test --stream --scope '{@wso2is/console,@wso2is/myaccount}'",
"test:unit:console": "npx lerna run test --stream --scope @wso2is/console",
"test:unit:core": "npx lerna run test --stream --scope @wso2is/core",
"test:unit:form": "npx lerna run test --stream --scope @wso2is/form",
"test:unit:forms": "npx lerna run test --stream --scope @wso2is/forms",
"test:unit:i18n": "npx lerna run test --stream --scope @wso2is/i18n",
"test:unit:modules": "npx lerna run test --stream --scope '{@wso2is/core,@wso2is/forms,@wso2is/i18n,@wso2is/react-components,@wso2is/theme,@wso2is/validation}'",
"test:unit:myaccount": "npx lerna run test ---stream -scope @wso2is/myaccount",
"test:unit:react-components": "npx lerna run test --stream --scope @wso2is/react-components",
"test:unit:theme": "npx lerna run test --stream --scope @wso2is/theme",
"test:unit:validation": "npx lerna run test --stream --scope @wso2is/validation",
"update-version": "node scripts/update-version.js",
"lint": "npx lerna run lint --stream",
"lint:autofix": "npm run lint:autofix --stream",
"lint:ci": "npx lerna run lint:ci --stream",
"lint:staged": "eslint -c .eslintrc.js $(git diff --diff-filter=d --name-only | grep -E \"(.js$|.ts$|.jsx$|.tsx$)\")",
"typecheck": "npx lerna run typecheck --stream"
},
"author": "WSO2",
"license": "Apache-2.0",
"dependencies": {
"@asgardeo/auth-react": "^1.1.12",
"@svgr/webpack": "4.3.2",
"@testing-library/user-event": "^12.7.3",
"@types/crypto-js": "^3.1.43",
"@types/history": "^4.7.3",
"@types/i18next": "8.4.3",
"@types/lodash-es": "^4.17.4",
"@types/node-forge": "^0.9.3",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.8.5",
"@types/react-notification-system": "^0.2.39",
"@types/react-redux": "^7.1.1",
"@types/react-router-dom": "^5.1.3",
"@types/ua-parser-js": "0.7.36",
"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": "^17.0.11",
"i18next-browser-languagedetector": "^3.0.3",
"i18next-xhr-backend": "^3.2.2",
"js-beautify": "^1.13.0",
"jshint": "^2.13.4",
"jsrsasign": "^10.0.5",
"lodash-es": "^4.17.21",
"moment": "2.29.2",
"node-forge": "^0.10.0",
"rc-tree": "^4.0.0-beta.2",
"react": "^16.9.0",
"react-access-control": "^1.0.1",
"react-app-polyfill": "^1.0.4",
"react-dom": "^16.9.0",
"react-final-form": "^6.5.3",
"react-head": "^3.3.0",
"react-helmet": "^5.2.1",
"react-i18next": "^10.11.5",
"react-markdown": "^4.3.1",
"react-notification-system": "^0.3.0",
"react-password-strength-bar": "^0.3.2",
"react-redux": "^7.1.0",
"react-router-dom": "^4.3.1",
"react-top-loading-bar": "^1.2.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"semantic-ui-react": "^0.87.3",
"ua-parser-js": "0.7.28"
},
"devDependencies": {
"@babel/cli": "^7.10.5",
"@babel/core": "^7.11.4",
"@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.10.4",
"@babel/preset-typescript": "^7.10.4",
"@babel/runtime-corejs3": "^7.11.2",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.4",
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.0.4",
"@types/i18next-xhr-backend": "^1.4.2",
"@types/jest": "^26.0.14",
"@types/js-beautify": "^1.8.2",
"@types/node": "^13.9.2",
"@types/redux-mock-store": "^1.0.2",
"@types/webappsec-credential-management": "^0.6.0",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"autoprefixer": "^9.8.6",
"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": "^7.0.0",
"core-js": "^3.6.5",
"css-loader": "^1.0.0",
"eslint": "^7.20.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-react-hooks": "^4.0.0",
"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": "^26.4.2",
"json-minimizer-webpack-plugin": "^3.3.0",
"lerna": "^3.22.1",
"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",
"mini-css-extract-plugin": "^0.4.3",
"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.9.0",
"redux-devtools-extension": "^2.13.8",
"rimraf": "^3.0.2",
"run-script-os": "^1.0.7",
"simple-git": "^1.129.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"terser-webpack-plugin": "^5.1.1",
"thread-loader": "^2.1.3",
"ts-jest": "^26.4.0",
"ts-loader": "^6.0.1",
"typescript": "^4.2.2",
"url-loader": "^2.1.0",
"watch": "^1.0.2",
"webpack": "^5.24.1",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2",
"worker-loader": "^2.0.0",
"write-file-webpack-plugin": "^4.5.1"
}
}