-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 KB
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
{
"name": "cloud-auth",
"version": "1.0.0",
"description": "Handles signups, login, logout, session validation and recovery of credentials",
"main": "index.js",
"scripts": {
"start": "docker-compose -f docker-compose.dev.yml up",
"app": "nodemon --inspect=0.0.0.0 ./server.js",
"unit": "jest",
"coverage": "jest --coverage"
},
"author": "Mrinal Purohit",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"async-redis": "^1.1.7",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"express": "^4.17.0",
"express-async-errors": "^3.1.1",
"express-promise-router": "^3.0.3",
"express-validator": "^6.1.1",
"gen-uid": "0.0.2",
"helmet": "^3.21.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.2.7",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"passport-unique-token": "^0.1.4",
"redis": "^2.8.0",
"uuid": "^8.3.0",
"winston": "^3.2.1"
},
"devDependencies": {
"jest": "^24.9.0",
"nodemon": "^1.19.1"
}
}