-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1012 Bytes
/
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
{
"name": "zhifan--hui-webdevspr2020-hw3",
"version": "0.1.0",
"private": true,
"proxy": "http://localhost:3000",
"engines": {
"node": "8.9.x"
},
"dependencies": {
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"node-env-run": "^3.0.2",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"react": "^16.13.0",
"react-app-env": "^1.2.3",
"react-dom": "^16.13.0",
"react-redux": "^7.2.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-scripts": "0.9.5",
"reactstrap": "^8.4.1",
"redux": "^4.0.5",
"redux-thunk": "^2.3.0",
"uuid": "^7.0.2"
},
"scripts": {
"start": "run-p server devreact",
"devreact": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"server": "node server/server.js",
"devserver": "node-env-run server/server.js --exec nodemon",
"dev": "run-p devserver devreact"
}
}