-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.26 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": "chat",
"version": "1.0.0",
"description": "Chat application using nodejs, sockjs and reactjs",
"main": "index.js",
"scripts": {
"production-build": "webpack",
"production-run": "babel-node server/server.js",
"production": "NODE_ENV=production npm run production-build && npm run production-run",
"watch": "concurrently \"npm run watch-server\" \"npm run watch-client\"",
"watch-client": "webpack-dev-server --inline --hot --port 3000",
"watch-server": "nodemon server/server.js --exec babel-node --presets es2015"
},
"keywords": [
"nodejs",
"reactjs",
"sockjs"
],
"license": "MIT",
"dependencies": {
"clean-webpack-plugin": "^0.1.10",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^3.0.1",
"express": "^4.14.0",
"global": "^4.3.2",
"jquery": "^3.1.0",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"sockjs": "^0.3.17"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"less": "^2.7.2",
"less-loader": "^4.0.3",
"style-loader": "^0.17.0",
"webpack": "^2.5.0",
"webpack-dev-server": "^2.4.5"
}
}