-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 983 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": "shopease-api",
"version": "1.0.0",
"description": "A RESTful API for an ecommerce platform",
"main": "src/index.js",
"type": "module",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"cron": "nodemon src/cron/scheduler.js"
},
"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",
"dotenv": "^16.4.5",
"express": "^4.19.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",
"rotating-file-stream": "^3.2.5",
"swagger-ui-express": "^5.0.1",
"uuid": "^10.0.0",
"yaml": "^2.5.1"
},
"devDependencies": {
"nodemon": "^3.1.7"
}
}