-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 845 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": "ebook-api",
"version": "1.0.0",
"description": "REST API for ebook rental store",
"main": "index.js",
"scripts": {
"test": "jest --watchAll --verbose --runInBand --detectOpenHandles --coverage",
"start": "node index.js"
},
"engines": {
"node": "12.18.1"
},
"author": "Rohan Chauhan",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"config": "^3.3.1",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"fawn": "^2.1.5",
"helmet": "^3.23.3",
"joi": "^14.3.1",
"joi-objectid": "^3.0.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.29.2",
"mongoose": "^5.9.22",
"nodemon": "^2.0.4",
"winston": "^3.3.3"
},
"devDependencies": {
"jest": "^26.1.0",
"supertest": "^4.0.2"
}
}