-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.25 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
{
"name": "battleships",
"version": "0.1.0",
"private": true,
"dependencies": {
"bootstrap": "^3.3.7",
"express": "^4.15.3",
"react": "^15.6.1",
"react-addons-css-transition-group": "^15.0.2",
"react-dom": "^15.6.1",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"react-router-redux": "^4.0.4",
"react-scripts": "1.0.10",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.2.3",
"redux": "^3.5.2",
"redux-socket.io": "^1.4.0",
"rimraf": "^2.5.2",
"simple-node-logger": "^0.93.28" ,
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
"uuid": "^3.1.0"
},
"scripts": {
"doAll": "npm run build && npm run deploy && npm run deployService && npm run restartService",
"start": "REACT_APP_API_HOST=http://localhost:3000 react-scripts start",
"build": "REACT_APP_API_HOST=http://api.taraskovtun.com:80 react-scripts build",
"deploy": "scp -r build/* root@DigiGh:/var/www/demo/",
"deployService": "scp -r src/server/* root@DigiGh:/var/www/node/battleships/server/",
"restartService": "ssh root@DigiGh 'systemctl restart battleships'",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
}
}