-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 891 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
36
37
38
{
"name": "chat-room-app",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "npm run build-prod && NODE_ENV=production node ./bin/www",
"debug": "node --debug ./bin/www",
"build-prod": "NODE_ENV=production webpack"
},
"babel": {
"presets": [
"react",
"es2015"
]
},
"dependencies": {
"body-parser": "~1.15.1",
"cookie-parser": "~1.4.3",
"debug": "~2.2.0",
"ejs": "^2.5.2",
"express": "~4.13.4",
"jsonwebtoken": "^7.1.9",
"mongoose": "^4.6.4",
"morgan": "~1.7.0",
"passport": "^0.3.2",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.0.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"serve-favicon": "~2.3.0",
"socket.io": "^1.5.0",
"socket.io-client": "^1.5.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.16.0",
"webpack": "^1.13.3"
}
}