-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 737 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 737 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
33
{
"name": "authx",
"version": "1.0.0",
"description": "Enterprise-grade authentication system with JWT, refresh tokens, RBAC, and rate limiting",
"main": "src/app.js",
"scripts": {
"start": "node src/app.js",
"dev": "node --watch src/app.js",
"db:init": "node src/db/init.js"
},
"keywords": [
"authentication",
"jwt",
"refresh-token",
"rbac",
"enterprise",
"security"
],
"author": "",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"pg": "^8.12.0",
"redis": "^4.6.14",
"uuid": "^9.0.1"
}
}