-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.26 KB
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
46
47
48
49
50
51
52
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"build": "npm install --prefix ui && npm run build --prefix ui",
"test": "cross-env NODE_ENV=test jest --runInBand --detectOpenHandles"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.7.7",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"cloudinary": "^1.36.4",
"compression": "^1.8.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"crypto-random-string": "^5.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^7.5.1",
"google-auth-library": "^9.14.1",
"helmet": "^7.2.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.3",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.1",
"nodemon": "^2.0.22",
"openai": "^4.47.1",
"otp-generator": "^4.0.1",
"rate-limit-redis": "^4.3.1",
"razorpay": "^2.8.6",
"redis": "^4.7.0"
},
"devDependencies": {
"cross-env": "^7.0.3",
"jest": "^29.6.1",
"supertest": "^6.3.3"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/"
]
}
}