forked from klaaaudii/node-chat-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 852 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
{
"name": "node-chat-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon server/server.js",
"start": "node server/server.js",
"test": "mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binhxn/node-chat-app.git"
},
"engines": {
"node": "6.2.2"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/binhxn/node-chat-app/issues"
},
"homepage": "https://github.com/binhxn/node-chat-app#readme",
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.0.2",
"nodemon": "^1.11.0"
},
"dependencies": {
"express": "^4.14.0",
"jquery": "^3.1.1",
"moment": "^2.15.1",
"mustache": "^2.2.1",
"socket.io": "^1.4.8"
}
}