-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "anokha_backend_2024",
"version": "1.0.0",
"description": "Backend | Anokha 2024",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"deploy": "pm2 start index.js -i max --name anokha_backend_2024 && pm2 save --force",
"kill": "pm2 delete all && pm2 save --force",
"backup": "node backups/mySQLBackup.js",
"verify": "node middleware/payU/cronJob.js",
"status_checker": "node backups/statusChecker.js"
},
"author": "Ashwin Narayanan S, Abhinav Ramakrishnan",
"license": "ISC",
"dependencies": {
"cluster": "^0.7.7",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"express": "^4.18.2",
"fs": "^0.0.1-security",
"helmet": "^7.1.0",
"mysql2": "^3.7.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.8",
"nodemon": "^3.1.7",
"otp-generator": "^4.0.1",
"paseto": "^3.1.4",
"path": "^0.12.7",
"pm2": "^5.3.1",
"process": "^0.11.10",
"redis": "^4.6.13",
"secure-random-password": "^0.2.3",
"uuid": "^9.0.1",
"validator": "^13.11.0"
}
}