-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 763 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 763 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
34
35
{
"name": "production-ready-backend-api-system",
"version": "1.0.0",
"description": "Production-ready backend system with authentication, sessions and RBAC",
"main": "src/app.js",
"type": "module",
"scripts": {
"dev": "nodemon src/app.js",
"start": "node src/app.js"
},
"keywords": [
"node",
"express",
"mongodb",
"auth",
"backend"
],
"author": "Vijay Kumar",
"license": "ISC",
"dependencies": {
"axios": "^1.15.2",
"bcryptjs": "^3.0.3",
"cookie-parser": "^1.4.7",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"jsonwebtoken": "^9.0.3",
"maxmind": "^5.0.6",
"mongoose": "^9.4.1",
"tar": "^7.5.13",
"uuid": "^14.0.0"
},
"devDependencies": {
"nodemon": "^3.1.14"
}
}