-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "todo-backend",
"version": "1.0.0",
"description": "Backend for managing todo",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "cross-env NODE_ENV=test mocha 'test/**/*.test.js' --exit",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm test"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^2.1.1",
"cls-rtracer": "^2.6.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.1",
"http-status-codes": "^2.2.0",
"mongoose": "^6.8.3",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"chai": "^4.3.7",
"faker": "^6.6.6",
"mocha": "^10.2.0",
"mongodb-memory-server": "^8.11.0",
"nodemon": "^2.0.20",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"supertest": "^6.3.3"
}
}