-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 990 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
38
39
{
"name": "chat-app",
"version": "1.0.0",
"description": "Chat App",
"main": "index.js",
"author": "Aditya Saxena",
"license": "MIT",
"homepage": "https://github.com/adityasmksaxena/node-chat-api#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/adityasmksaxena/node-chat-api.git"
},
"bugs": {
"url": "https://github.com/adityasmksaxena/node-chat-api/issues"
},
"engines": {
"node": "10.0.0"
},
"scripts": {
"start": "nodemon server/server.js",
"test": "mocha server/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"dependencies": {
"express": "^4.16.3",
"moment": "^2.22.1",
"socket.io": "^2.1.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"expect": "^22.4.3",
"mocha": "^5.2.0",
"nodemon": "^1.17.4"
}
}