-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 834 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
{
"name": "bpa-backend",
"version": "1.0.0",
"description": "Backend application for BPA",
"main": "app.js",
"scripts": {
"test": "mocha './test/**/*.test.js'",
"coverage": "nyc --reporter=lcov --reporter=text npm run test",
"tests": "nodemon --exec \"npm test\""
},
"nyc": {
"include": "controller",
"exclude": "test"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.3",
"redis": "^3.0.2",
"request": "^2.88.2"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.1.1",
"node-mocks-http": "^1.8.1",
"nyc": "^15.0.0",
"sinon": "^9.0.2"
}
}