-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.15 KB
/
package.json
File metadata and controls
49 lines (49 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
43
44
45
46
47
48
49
{
"name": "chat",
"version": "1.0.0",
"description": "Basic chat app, learning socket.io",
"author": "Kevin Zhang",
"license": "ISC",
"repository": "*",
"main": "server/index.js",
"scripts": {
"monitor": "nodemon --ignore app/public/ --ignore app/client/ bin",
"dev": "webpack -d --watch --progress & npm run monitor",
"build": "webpack -p"
},
"dependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.16.3",
"body-parser": "^1.15.2",
"ejs": "^2.5.2",
"express": "^4.14.0",
"morgan": "^1.7.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"react-router": "^2.8.1",
"redux": "^3.6.0",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8",
"webpack": "^1.13.2"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"ignore": [
"/node_modules/"
]
},
"devDependencies": {
"nodemon": "^1.10.2"
}
}