-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 849 Bytes
/
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
{
"name": "main-backend",
"version": "1.0.0",
"engines": {
"node": "20.x"
},
"description": "",
"main": "server.js",
"type": "module",
"scripts": {
"dev": "nodemon server.js",
"start": "node server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"connect-redis": "^7.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"joi": "^17.11.0",
"mongodb": "^6.3.0",
"mongoose": "^7.2.2",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.3",
"otp-generator": "^4.0.1",
"passport": "^0.7.0",
"passport-google-oauth2": "^0.2.0",
"redis": "^4.6.11",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.1"
}
}