-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
37
38
39
40
41
42
43
44
{
"name": "chatroom",
"version": "1.0.0",
"description": "The test from Lixar",
"main": "index.js",
"scripts": {
"start": " concurrently \" npm run compile \" \" npm run serve \" ",
"compile": "webpack --progress --watch",
"serve": "nodemon app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bright",
"license": "ISC",
"dependencies": {
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.11.1",
"babel-register": "^6.9.0",
"body-parser": "~1.15.2",
"bootstrap": "^3.3.7",
"express": "^4.14.0",
"jquery": "^3.1.1",
"path": "^0.12.7",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-redux": "^4.4.5",
"redux": "^3.5.2",
"redux-logger": "^2.6.1",
"redux-promise": "^0.5.3",
"redux-socket.io": "^1.3.1",
"redux-thunk": "^2.1.0",
"socket.io": "^1.7.2",
"webpack-dev-middleware": "^1.6.1"
},
"devDependencies": {
"concurrently": "^3.1.0",
"webpack": "^1.11.0",
"babel-plugin-react-transform": "^2.0.2",
"babel-preset-stage-0": "^6.5.0",
"react-transform-hmr": "^1.0.4"
}
}