-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.05 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
{
"name": "iam-system",
"version": "1.0.0",
"description": "Enterprise-grade Identity and Access Management System with RBAC and MFA",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest",
"test:integration": "jest --config jest.integration.config.js",
"db:migrate": "node migrations/run.js",
"db:seed": "node migrations/seed.js"
},
"keywords": [
"iam",
"rbac",
"mfa",
"authentication",
"authorization",
"security"
],
"author": "Jose",
"license": "MIT",
"dependencies": {
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"joi": "^17.11.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.11.3",
"qrcode": "^1.5.3",
"speakeasy": "^2.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"supertest": "^6.3.3"
}
}