-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (44 loc) · 1.1 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
39
40
41
42
43
44
45
{
"name": "zest-backend",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"dev": "nodemon index.ts",
"start": "nodemon index.ts",
"start:prod": "node index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/jsonwebtoken": "^9.0.4",
"@types/uniqid": "^5.3.4",
"@types/uuid": "^9.0.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.2.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"fs": "^0.0.1-security",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.4.3",
"nodemailer": "^6.9.6",
"otp-generator": "^4.0.1",
"razorpay": "^2.9.2",
"uniqid": "^5.4.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/cors": "^2.8.14",
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.17",
"@types/node": "^20.5.3",
"@types/nodemailer": "^6.4.12",
"@types/otp-generator": "^4.0.1",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"typescript": "^5.1.6"
}
}