-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 830 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 830 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
{
"name": "node-chat-db",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node server/server.js",
"test": "export NODE_ENV=development || SET \"NODE_ENV=development\"&& mocha server/**/*.test.js",
"clear": "export NODE_ENV=development || SET \"NODE_ENV=development\"&& mocha server/**/server.drop.js"
},
"engines": {
"node": "6.9.1"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.3.0",
"crypto-js": "^3.1.6",
"express": "^4.14.0",
"jsonwebtoken": "^7.1.9",
"lodash": "^4.17.4",
"mongodb": "^2.2.5",
"mongoose": "^4.5.9",
"socket.io": "^1.4.8",
"validator": "^5.6.0"
},
"devDependencies": {
"expect": "^1.20.2",
"mocha": "^3.0.2",
"nodemon": "^1.10.2",
"supertest": "^2.0.0"
},
"description": ""
}