-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 989 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": "firstApp",
"version": "0.1.0",
"proxy": "http://localhost:3123",
"private": true,
"devDependencies": {
"bootstrap": "^3.3.7",
"flux": "^3.1.2",
"isomorphic-fetch": "^2.2.1",
"moment": "^2.18.1",
"react-addons-css-transition-group": "^15.4.2",
"react-redux": "^5.0.2",
"react-redux-toastr": "^4.4.6",
"react-router": "^3.0.2",
"react-scripts": "0.8.5",
"react-toastr": "^2.8.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
},
"dependencies": {
"react": "^15.4.2",
"react-dom": "^15.4.2"
},
"scripts": {
"postinstall": "cd ./server && npm install",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"api": "cd ./server && npm start",
"start:win": "set PORT=9000 && react-scripts start",
"start:bash": "npm run api:bash && npm run start:win",
"api:bash": "start sh ./apiserver"
}
}