-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 796 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 796 Bytes
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
{
"name": "chat-app",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "mocha server/**/*.test.js",
"test-watch": "nodemon --exec \"npm test\""
},
"engines": {
"node": "8.11.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pandikapinata/node-chat-app.git"
},
"author": "Pandika Pinata",
"license": "ISC",
"bugs": {
"url": "https://github.com/pandikapinata/node-chat-app/issues"
},
"homepage": "https://github.com/pandikapinata/node-chat-app#readme",
"dependencies": {
"express": "^4.16.3",
"moment": "^2.22.2",
"socket.io": "^2.1.1"
},
"devDependencies": {
"expect": "^23.4.0",
"mocha": "^5.2.0",
"nodemon": "^1.18.0"
}
}