-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 958 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 958 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
36
37
38
{
"name": "virtual-wallet-api",
"version": "1.0.0",
"description": "Multi-tenant virtual wallet with Razorpay, OTP (Redis) using Express & MongoDB",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js"
},
"dependencies": {
"@redis/client": "^5.5.6",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dotenv": "^16.5.0",
"express": "^4.21.2",
"express-async-errors": "^3.1.1",
"express-rate-limit": "^6.7.0",
"helmet": "^8.1.0",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.6.1",
"nodemailer": "^7.0.3",
"path": "^0.12.7",
"pdfkit": "^0.17.1",
"razorpay": "^2.9.0",
"redis": "^5.5.6",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.0",
"yamljs": "^0.3.0"
},
"devDependencies": {
"nodemon": "^3.1.10"
}
}