-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
238 lines (238 loc) · 8.6 KB
/
package.json
File metadata and controls
238 lines (238 loc) · 8.6 KB
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
{
"name": "gluu-admin-ui",
"version": "0.0.0",
"description": "UI to administer the jans-sever features",
"keywords": [
"jans-server",
"janssen",
"oauth",
"admin-ui",
"gluu"
],
"homepage": "/admin",
"bugs": {
"url": "https://github.com/GluuFederation/gluu-admin-ui/issues",
"email": "team@gluu.org"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://opensource.org/licenses/apache2.0.php"
}
],
"main": "index.js",
"scripts": {
"test": "set NODE_ENV=test&& jest --forceExit",
"clear_jest": "jest --clearCache",
"test:watch": "npm test -- --watch",
"start": "npm cache clean --f && reset && npm run start:dev",
"build:dev": "node \"./build/cli-tools.js\" --clear dist --create dist && webpack --config \"./config/webpack.config.client.dev.ts\"",
"build:prod": "node \"./build/cli-tools.js\" --clear dist --create dist && webpack --config \"./config/webpack.config.client.prod.ts\"",
"build:adminuitest": "NODE_ENV=adminuitest node \"./build/cli-tools.js\" --clear dist --create dist && NODE_ENV=adminuitest webpack --config \"./config/webpack.config.client.prod.ts\"",
"build:goldencrane": "NODE_ENV=goldencrane node \"./build/cli-tools.js\" --clear dist --create dist && NODE_ENV=goldencrane webpack --config \"./config/webpack.config.client.prod.ts\"",
"start:dev": "node \"./build/cli-tools.js\" --clear dist --create dist && webpack serve --config \"./config/webpack.config.client.dev.ts\"",
"start:prod": "node \"./build/cli-tools.js\" --clear dist --create dist && webpack-dev-server --config \"./config/webpack.config.client.prod.ts\"",
"lint": "eslint app/ plugins/ --ext .js,.jsx,.ts,.tsx --fix",
"lint:check": "eslint app/ plugins/ --ext .js,.jsx,.ts,.tsx",
"type-check": "tsc --noEmit",
"check:all": "npm run lint:check && npm run type-check",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json}\"",
"api": "rimraf jans_config_api && openapi-merge-cli && openapi-generator-cli generate -i ./configApiSpecs.yaml --global-property skipFormModel=false -g javascript -o jans_config_api && cd jans_config_api && npm i mocha@10.2.0 && npm install && npm run build",
"api:orval": "rimraf jans_config_api_orval && openapi-merge-cli && orval --config ./orval.config.ts && npx tsc -p script/fix-orval-enums.tsconfig.json && node .fix-orval-enums-out/fix-orval-enums.js",
"plugin:showAll": "node ./build/plugin-cli.js --showAllPlugins",
"plugin:add": "node ./build/plugin-cli.js --addPlugin",
"plugin:remove": "node ./build/plugin-cli.js --removePlugin",
"plugin:clean": "node ./build/plugin-cli.js --cleanExceptDefault admin,auth-server --resetPluginConfig",
"analyze": "ANALYZE=true npm run build:prod",
"analyze:dev": "ANALYZE=true npm run build:dev",
"prepare": "cd .. && npx husky install && git config core.hooksPath admin-ui/.husky"
},
"author": "gluu inc.",
"license": "Apache",
"devDependencies": {
"@babel/cli": "^7.23.4",
"@babel/core": "^7.23.5",
"@babel/eslint-parser": "^7.21.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@babel/plugin-transform-react-jsx": "^7.27.1",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-flow": "^7.21.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.27.1",
"@testing-library/dom": "^9.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/animejs": "^3.1.13",
"@types/circular-dependency-plugin": "^5.0.8",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.17",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"@types/react-toggle": "^4.0.5",
"@types/uuid": "^10.0.0",
"@types/webpack-bundle-analyzer": "^4.7.0",
"@types/webpack-dev-server": "^4.7.1",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"@webpack-cli/serve": "^2.0.1",
"autoprefixer": "10.4.14",
"babel-jest": "^29.5.0",
"babel-loader": "^9.1.2",
"babel-plugin-recharts": "^2.0.0",
"babel-plugin-styled-components": "^2.0.7",
"circular-dependency-plugin": "^5.2.2",
"commander": "^10.0.0",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.1",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.5",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.4.0",
"eslint-plugin-react": "^7.33.2",
"extract-css-chunks-webpack-plugin": "^4.9.0",
"file-loader": "^6.2.0",
"glob": "^10.3.10",
"html-webpack-plugin": "^5.5.0",
"husky": "^8.0.0",
"ignore-loader": "^0.1.2",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^16.0.0",
"mini-css-extract-plugin": "^2.7.5",
"mkdirp": "^2.1.6",
"orval": "^7.11.2",
"postcss-loader": "^7.2.4",
"prettier": "^3.5.3",
"purgecss-webpack-plugin": "^5.0.0",
"raw-loader": "^4.0.2",
"redux-saga-test-plan": "^4.0.6",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^5.0.5",
"sass": "~1.67.0",
"sass-loader": "^13.2.2",
"style-loader": "^3.3.2",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.1.0",
"url": "^0.11.4",
"webpack": "^5.99.9",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"whatwg-fetch": "^3.6.20",
"xhr2": "^0.2.1",
"yaml-loader": "^0.8.0"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@fortawesome/fontawesome-free": "^6.4.0",
"@janssenproject/cedarling_wasm": "1.14.0",
"@material-table/core": "6.4.4",
"@mui/base": "^5.0.0-alpha.124",
"@mui/icons-material": "^5.11.16",
"@mui/material": "^5.15.14",
"@mui/x-date-pickers": "^7.0.0",
"@openid/appauth": "^1.3.1",
"@reduxjs/toolkit": "^2.2.1",
"@tanstack/react-query": "^5.90.2",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/dompurify": "^3.0.5",
"@types/react-grid-layout": "^1.3.5",
"@types/react-helmet": "^6.1.11",
"ace-builds": "^1.16.0",
"animejs": "^3.2.1",
"axios": "^1.8.1",
"bootstrap": "^5.3.0",
"dayjs": "^1.11.7",
"dompurify": "^3.3.0",
"dotenv": "^16.0.3",
"formik": "^2.2.9",
"fs-extra": "^11.1.1",
"holderjs": "^2.9.9",
"i18next": "^23.10.1",
"jans_config_api": "file:jans_config_api",
"jotai": "^2.16.1",
"jszip": "^3.10.1",
"jwt-decode": "^4.0.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.1",
"openapi-merge-cli": "^1.3.2",
"path-browserify": "^1.0.1",
"postcss": "^8.4.21",
"pretty-checkbox": "^3.0.3",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"query-string": "^9.0.0",
"rc-slider": "^10.1.1",
"react": "18.3.1",
"react-ace": "^11.0.1",
"react-bootstrap-typeahead": "^6.1.1",
"react-dom": "18.3.1",
"react-dropzone": "^14.2.3",
"react-error-boundary": "^4.0.3",
"react-grid-layout": "^1.5.2",
"react-helmet": "^6.1.0",
"react-i18next": "^14.1.0",
"react-idle-timer": "^5.5.3",
"react-json-view-lite": "^2.4.1",
"react-redux": "^9.1.0",
"react-responsive": "^10.0.0",
"react-router": "^6.22.3",
"react-router-dom": "^6.22.3",
"react-spinners": "^0.13.8",
"react-text-mask": "^5.5.0",
"react-toastify": "^10.0.5",
"react-toggle": "^4.1.3",
"react-tooltip": "^5.28.0",
"reactstrap": "^9.2.3",
"recharts": "^2.13.0",
"redux-persist": "^6.0.0",
"redux-saga": "^1.2.3",
"tss-react": "^4.8.2",
"unzipper": "^0.10.11",
"uuid": "^10.0.0",
"yup": "^1.4.0"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"set-value": "^4.1.0",
"jspdf": "^2.4.0",
"autoprefixer": "^10.4.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:react/recommended",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"lint-staged": {
"*.{js,jsx}": [
"eslint --cache --max-warnings=0",
"prettier --check"
],
"*.json": [
"prettier --check"
]
}
}