-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.07 KB
/
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": "togather-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node server.js",
"test": "export NODE_ENV=test || SET \"NODE_ENV=test\" && mocha test/**/*.test.js",
"test-watch": "nodemon --exec 'npm test'"
},
"engines": {
"node": "10.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eldriclim/togather-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eldriclim/togather-backend/issues"
},
"homepage": "https://github.com/eldriclim/togather-backend#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"lodash": "^4.17.11",
"moment": "^2.23.0",
"mongodb": "^3.1.12",
"mongoose": "^5.4.5",
"mongoose-unique-validator": "^2.0.2",
"randomstring": "^1.1.5",
"socket.io": "^2.2.0",
"validator": "^10.11.0"
},
"devDependencies": {
"expect": "^23.6.0",
"mocha": "^5.2.0",
"supertest": "^3.4.1"
}
}