-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
183 lines (183 loc) · 6.51 KB
/
package.json
File metadata and controls
183 lines (183 loc) · 6.51 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
{
"name": "clowder-frontend",
"version": "2.0.0-beta.2",
"description": "",
"engines": {
"npm": ">=8.11",
"node": ">=16.15"
},
"license": "Apache-2.0",
"scripts": {
"preinstall": "node tools/nodeVersionCheck.js",
"start-message": "babel-node tools/startMessage.js",
"prestart": "npm-run-all --parallel start-message",
"start": "npm-run-all --parallel open:src",
"start:dev": "export CLOWDER_REMOTE_HOSTNAME=http://localhost:8000 && export JUPYTERHUB_URL=http://localhost:8765 && npm run start",
"open:src": "babel-node tools/srcServer.js",
"open:dist": "babel-node tools/distServer.js",
"lint:watch": "npm run lint --watch",
"clean-dist": "npm run remove-dist && mkdir dist",
"remove-dist": "npx rimraf ./dist",
"prebuild": "npm run clean-dist && npm run lint",
"build": "babel-node tools/build.js",
"test:watch": "npm run test -- --watch",
"analyze-bundle": "babel-node ./tools/analyzeBundle.js",
"lint": "npx eslint src --quiet",
"lint:fix": "npm run lint -- --fix",
"codegen:v1": "./node_modules/.bin/openapi -i https://clowder.ncsa.illinois.edu/clowder/swagger -o src/openapi/v1",
"codegen:v2": "./node_modules/.bin/openapi -i ${CLOWDER_REMOTE_HOSTNAME}/api/v2/openapi.json -o src/openapi/v2",
"codegen:v2:dev": "export CLOWDER_REMOTE_HOSTNAME=http://localhost:8000 && ./node_modules/.bin/openapi -i ${CLOWDER_REMOTE_HOSTNAME}/api/v2/openapi.json -o src/openapi/v2",
"codegen:v2:test": "export CLOWDER_REMOTE_HOSTNAME=http://localhost && ./node_modules/.bin/openapi -i ${CLOWDER_REMOTE_HOSTNAME}/api/v2/openapi.json -o src/openapi/v2",
"codegen:v2:file": "./node_modules/.bin/openapi -i ../openapi.json -o src/openapi/v2",
"codegen": "npm run codegen:v1 && npm run codegen:v2",
"docs": "typedoc"
},
"author": "NCSA",
"dependencies": {
"@appbaseio/reactivesearch": "^3.40.2",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@material-ui/core": "^4.12.3",
"@material-ui/icons": "^4.11.2",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.14.0",
"@mui/styles": "^5.3.0",
"@mui/x-date-pickers": "^5.0.8",
"@rjsf/core": "^5.18.4",
"@rjsf/utils": "^5.18.4",
"@rjsf/validator-ajv8": "^5.18.4",
"@rjsf/mui": "^5.18.4",
"@types/react-gravatar": "^2.6.10",
"babel-polyfill": "^6.26.0",
"classnames": "^2.2.6",
"csvtojson": "^2.0.10",
"date-fns": "^2.28.0",
"date-fns-tz": "^2.0.0",
"fs": "^0.0.1-security",
"html-react-parser": "^3.0.4",
"jquery": "^3.6.0",
"jwt-decode": "^3.0.0",
"ol": "^7.4.0",
"pretty-bytes": "^6.0.0",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^17.0.2",
"react-gravatar": "^2.6.3",
"react-file-drop": "^3.1.6",
"react-json-view": "^1.21.3",
"react-loading-overlay-ts": "^1.0.4",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"react-show-more-text": "^1.6.2",
"react-vega": "^7.6.0",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1",
"universal-cookie": "~4.0.4",
"vega": "^5.25.0",
"vega-lite": "^5.13.0",
"whatwg-fetch": "2.0.2"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/plugin-transform-flow-strip-types": "^7.0.0",
"@babel/plugin-transform-react-constant-elements": "^7.0.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.13.0",
"@babel/register": "^7.0.0",
"@testing-library/react": "^11.2.6",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-loading-overlay": "^1.0.1",
"@types/react-redux": "^7.1.22",
"@types/react-router-dom": "^5.3.3",
"@types/redux-immutable-state-invariant": "^2.1.2",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"autoprefixer": "6.5.4",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.0",
"babel-plugin-root-import": "^6.4.1",
"babel-plugin-transform-react-remove-prop-types": "0.3.1",
"better-docs": "^2.7.2",
"browser-sync": "^2.26.12",
"chalk": "1.1.3",
"clean-webpack-plugin": "^3.0.0",
"connect-history-api-fallback": "1.3.0",
"css-loader": "^6.7.1",
"cssnano": "^5.0.9",
"dayjs": "^1.11.6",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-watch": "^8.0.0",
"eslint-webpack-plugin": "^3.2.0",
"file-loader": "6.1.1",
"html-loader": "1.3.2",
"html-webpack-plugin": "^5.5.0",
"husky": "^6.0.0",
"isparta": "^4.1.1",
"jsdoc": "^3.6.7",
"json-loader": "^0.5.7",
"lint-staged": "^11.0.0",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^6.0",
"npm-run-all": "4.0.1",
"openapi-typescript-codegen": "^0.12.3",
"postcss": "^8.3.11",
"postcss-loader": "^3.0.0",
"prettier": "^2.3.0",
"react-loading-overlay-ts": "2.0.0",
"redux-immutable-state-invariant": "1.2.4",
"rimraf": "^2.5.4",
"sass-loader": "^10.0.3",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.3.6",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"url-loader": "^3.0.0",
"wallaby-webpack": "^3.9.15",
"webpack": "^5.74.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^4.10.0",
"webpack-dev-middleware": "^5.3.3",
"webpack-dev-server": "^4.11.1",
"webpack-hot-middleware": "^2.25.2",
"webpack-merge": "^5.7.3"
},
"keywords": [
"clowder-frontend"
],
"repository": {
"type": "git"
}
}