-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 952 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
37
38
{
"name": "todo-api",
"version": "0.1.0",
"description": "App to store notes",
"main": "app.js",
"scripts": {
"test": "export NODE_ENV=test && mocha 'test/**/*.test.js' --exit",
"test-coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
"test-watch": "nodemon --exec \"npm test\"",
"start": "node src/server.js",
"start:watch": "nodemon --watch src src/server.js"
},
"engines": {
"node": ">= 16",
"npm": ">= 8"
},
"author": "moser.sts",
"license": "ISC",
"dependencies": {
"bcryptjs": "2.4.3",
"body-parser": "1.20.2",
"crypto-js": "4.1.1",
"express": "4.18.2",
"jsonwebtoken": "9.0.0",
"mongoose": "7.2.4",
"mongodb": "5.6.0",
"lodash": "4.17.21",
"validator": "13.9.0"
},
"devDependencies": {
"expect": "^25.0.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"nyc": "^15.0.0",
"sinon": "^15.1.2",
"supertest": "^6.3.3"
}
}