-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 725 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 725 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
{
"name": "population-management",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha __tests__/**/*.js --timeout 9999 --exit",
"start": "nodemon server.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"dotenv": "^8.1.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^6.2.0",
"mongoose": "^5.6.6",
"morgan": "^1.9.1"
},
"devDependencies": {
"coveralls": "^3.0.6",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"nyc": "^14.1.1"
}
}