-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "users",
"version": "1.0.0",
"private": true,
"scripts": {
"test": "mocha --recursive --timeout 60000",
"test-cv": "nyc --reporter=text --all mocha --recursive --timeout 60000",
"start": "node ./bin/www",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"prettier": "prettier --write --print-width 160 '**/*.js'"
},
"dependencies": {
"amqplib": "^0.8.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"firebase-admin": "^10.0.0",
"http-errors": "~1.6.3",
"jade": "^0.31.2",
"jwt-simple": "^0.5.6",
"moment": "^2.29.1",
"mongoose": "^5.2.18",
"morgan": "~1.9.1",
"needle": "^3.0.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-arrays": "^2.2.0",
"chai-as-promised": "^7.1.1",
"chai-files": "^1.4.0",
"chai-http": "^4.3.0",
"coveralls": "^3.1.0",
"mocha": "^9.1.3",
"mongodb-memory-server": "^6.9.2",
"nodemon": "^2.0.6",
"nyc": "^15.1.0",
"prettier": "^2.2.1",
"proxyquire": "^2.1.3"
}
}