forked from linemos/kubernetes-intro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 805 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"express": "^4.16.4",
"http-proxy": "^1.17.0",
"path": "^0.12.7",
"prop-types": "^15.6.2",
"react": "^16.6.3",
"react-bootstrap": "^0.32.4",
"react-dom": "^16.6.3",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"custom-react-scripts": "^0.2.2",
"prop-types": "^15.6.1",
"redux-thunk": "^2.3.0",
"react-scripts": "1.1.4"
},
"proxy": {
"/api": {
"target": "http://localhost:5000"
}
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"production": "node server.js"
}
}