-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.49 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "rbac-system",
"version": "1.0.0",
"description": "A Role Based Access Control System",
"main": "index.js",
"scripts": {
"start:dev": "NODE_ENV=development nodemon index.js",
"start:staging": "NODE_ENV=staging nodemon index.js",
"start": "NODE_ENV=production node index.js",
"test": "NODE_ENV=test jest",
"test:coverage": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --watch",
"test:verbose": "jest --verbose",
"test:open": "jest --detectOpenHandles"
},
"author": "Abdourahamane Issaka Sani",
"license": "ISC",
"dependencies": {
"argon2": "^0.30.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^6.7.0",
"helmet": "^7.0.0",
"hpp": "^0.2.3",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.4.1",
"morgan": "^1.10.0",
"morgan-json": "^1.1.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.2",
"pug": "^3.0.2",
"qrcode": "^1.5.3",
"rate-limit-redis": "^3.0.2",
"rate-limiter-flexible": "^2.4.1",
"redis": "^3.1.2",
"sharp": "^0.32.1",
"speakeasy": "^2.0.0",
"validator": "^13.9.0",
"winston": "^3.8.2",
"winston-mongodb": "^5.1.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/redis": "^4.0.11",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"supertest": "^6.3.3"
}
}