-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.15 KB
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
{
"name": "team-hydra-ii",
"version": "1.0.0",
"private": true,
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"babelify": "^7.3.0",
"nodemon": "^1.11.0",
"react-scripts": "^0.9.0",
"remote-redux-devtools": "^0.5.7",
"watchify": "^3.9.0"
},
"dependencies": {
"body-parser": "^1.16.1",
"express": "^4.14.1",
"isomorphic-fetch": "^2.2.1",
"mongoose": "^4.8.3",
"path": "^0.12.7",
"react": "^15.4.2",
"react-bootstrap": "^0.30.7",
"react-dom": "^15.4.2",
"react-redux": "^5.0.3",
"react-router": "^3.0.2",
"react-router-bootstrap": "^0.23.1",
"react-router-redux": "^4.0.8",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3"
},
"engines": {
"node": "6.9.5"
},
"scripts": {
"watch": "watchify src/index.js -v -t [ babelify --presets [ react ] ] -o public-dev/js/main.js",
"serve": "nodemon server/index.js --exec babel-node",
"build": "react-scripts build && babel server -d production_server"
}
}