-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.12 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
45
46
{
"name": "socketio-chat",
"version": "0.0.1",
"description": "nodejs 和 socketio 实现的 聊天窗口",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xunull/socketio-chat.git"
},
"author": "xunull",
"license": "MIT",
"bugs": {
"url": "https://github.com/xunull/socketio-chat/issues"
},
"homepage": "https://github.com/xunull/socketio-chat#readme",
"dependencies": {
"body-parser": "^1.15.1",
"chalk": "^1.1.3",
"debug": "^2.2.0",
"ejs": "^2.4.2",
"express": "^4.13.4",
"helmet": "^2.1.1",
"lodash": "^4.13.1",
"log4js": "^0.6.36",
"mongoose": "^4.4.20",
"node-uuid": "^1.4.7",
"pump": "^1.0.1",
"redis": "^2.6.1",
"socket.io": "^1.4.6",
"tracer": "^0.8.3",
"uuid": "^2.0.2"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.10",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-uglify": "^1.5.4",
"webpack": "^1.13.1",
"webpack-stream": "^3.2.0"
}
}