-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 856 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 856 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
32
{
"name": "notes-server",
"version": "1.0.0",
"description": "A RESTful web service for a 'note keeping' app with role based Authorization",
"main": "index.js",
"scripts": {
"test": "jest --testEnvironment=node --runInBand --watchAll --forceExit --detectOpenHandles"
},
"keywords": [],
"author": "Jerry Barman",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"config": "^3.3.2",
"cookie-parser": "^1.4.5",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"joi": "^17.2.1",
"joi-password-complexity": "^4.2.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongoose": "^5.10.9",
"nodemon": "^2.0.6",
"supertest": "^6.1.1",
"winston": "^3.3.3",
"winston-mongodb": "^5.0.5"
},
"devDependencies": {
"jest": "^26.6.1"
}
}