-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 991 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
40
41
42
43
{
"name": "chataway",
"version": "1.0.0",
"description": "A chat application for learning ",
"main": "server.js",
"scripts": {
"start": "node server/server.js",
"test": "export NODE_ENV=test || SET NODE_ENV=test && mocha server/tests/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"engines": {
"node": "10.13.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crea8lab/chataway.git"
},
"keywords": [
"node",
"chat-app",
"socket.io",
"express",
"web"
],
"author": "Fayvor George",
"license": "MIT",
"bugs": {
"url": "https://github.com/crea8lab/chataway/issues"
},
"homepage": "https://github.com/crea8lab/chataway#readme",
"dependencies": {
"bcrypt": "^3.0.2",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"moment": "^2.22.2",
"mongoose": "^5.3.12",
"socket.io": "^2.1.1"
},
"devDependencies": {
"expect": "^23.6.0",
"mocha": "^5.2.0"
}
}