-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 978 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
{
"name": "shopease-api",
"version": "1.0.0",
"description": "A RESTful API for an ecommerce platform",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "pm2 start process.config.json",
"stop": "pm2 stop process.config.json",
"restart": "pm2 restart process.config.json",
"delete": "pm2 delete process.config.json"
},
"author": "Shubham Purwar",
"license": "ISC",
"dependencies": {
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"cloudinary": "^2.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"date-fns": "^3.6.0",
"express": "^4.21.2",
"formidable": "^3.5.1",
"joi": "^17.13.1",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"nodemailer": "^6.9.13",
"pluralize": "^8.0.0",
"razorpay": "^2.9.4",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"yaml": "^2.5.1"
}
}