-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 744 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 744 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
{
"name": "node-chat-app",
"version": "1.0.0",
"description": "A simple node chat app to train with socket.io",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"author": "angristan",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Angristan/node-chat-app.git"
},
"dependencies": {
"expect": "^1.20.2",
"express": "^4.16.3",
"mocha": "^5.2.0",
"moment": "^2.22.2",
"socket.io": "^2.1.1"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"nodemon": "^1.18.3"
}
}