-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.94 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "einstrust",
"version": "2.0.0",
"description": "EinsTrust - Enterprise Authentication as a Service with Zero-Trust Architecture, RBAC, OAuth & Advanced Security",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:security": "jest --testPathPattern=security",
"start": "node -r esm index.js",
"dev": "nodemon -r esm index.js",
"docker:build": "docker build -t einstrust .",
"docker:run": "docker run -p 3000:3000 einstrust"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tapas100/node-auth-app.git"
},
"keywords": [
"authentication",
"authorization",
"saas",
"auth-as-a-service",
"jwt",
"oauth",
"rbac",
"security",
"rate-limiting",
"refresh-tokens",
"multi-tenant",
"enterprise-auth",
"zero-trust"
],
"author": "Tapas Mahanta",
"license": "ISC",
"bugs": {
"url": "https://github.com/tapas100/node-auth-app/issues"
},
"homepage": "https://github.com/tapas100/node-auth-app#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-jwt": "^5.3.1",
"express-rate-limit": "^6.7.0",
"express-mongo-sanitize": "^2.2.0",
"helmet": "^7.1.0",
"http-status": "^1.4.2",
"http-status-codes": "^1.4.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.2",
"mongodb": "^3.5.5",
"mongoose": "^5.9.7",
"mongoose-unique-validator": "^2.0.3",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-github2": "^0.1.12",
"redis": "^4.6.0",
"response-time": "^2.3.2",
"uuid": "^9.0.0",
"validator": "^13.0.0",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^2.0.2",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"@types/jest": "^29.5.0"
}
}