-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 928 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
{
"name": "backend",
"version": "1.0.0",
"description": "OTP Verification, JWT Token, Authentication, Reset Password",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"server": "nodemon server.js",
"client": "npm start --prefix client",
"dev": "concurrently \"npm start\" \"npm run client\" "
},
"author": "jamilahmed2",
"license": "MIT",
"dependencies": {
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"concurrently": "^8.2.0",
"cors": "^2.8.5",
"dotenv": "^16.1.4",
"express": "^4.18.2",
"geoip-lite": "^1.4.7",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"mailgen": "^2.0.27",
"mongodb-memory-server": "^8.12.1",
"mongoose": "^7.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.21",
"otp-generator": "^4.0.1",
"request-ip": "^3.3.0"
}
}