-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "zoo-ml-subject-assistant",
"version": "1.0.0",
"description": "Machine Learning-assisted web app for processing Zooniverse Subjects.",
"main": "index.js",
"scripts": {
"start": "export NODE_ENV=production ; export PROXY_HOST=http://localhost:3666 ; webpack serve",
"clean": "rm -fr ./app",
"build": "export BABEL_ENV=production ; export NODE_ENV=production ; npm run clean && webpack --mode=production",
"proxy-server": "node server/proxy-server.js"
},
"author": "Zooniverse <[email protected]> (https://www.zooniverse.org/)",
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.19.2",
"json2csv": "^5.0.6",
"mobx": "^5.15.7",
"mobx-react": "^6.3.1",
"mobx-state-tree": "^3.17.3",
"panoptes-client": "^5.5.8",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.2.0",
"streamsaver": "^2.0.6"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"babel-loader": "^9.1.3",
"css-loader": "^6.8.1",
"sass": "^1.69.5",
"sass-loader": "^13.3.2",
"selfsigned": "^2.4.1",
"style-loader": "^3.3.3",
"url": "^0.11.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}