forked from jigar-sable/flipkart-mern
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 993 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
{
"name": "flipkart",
"version": "1.0.0",
"description": "Full Stack Flipkart Ecommerce",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"frontend": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run frontend\"",
"render-postbuild": "NPM_CONFIG_PRODUCTION=false && npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "Jigar Sable",
"license": "ISC",
"dependencies": {
"@sendgrid/mail": "^7.6.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cloudinary": "^1.28.1",
"concurrently": "^7.6.0",
"cookie-parser": "^1.4.6",
"dotenv": "^14.2.0",
"express": "^4.17.2",
"express-fileupload": "^1.2.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.7",
"nodemailer": "^6.7.2",
"paytmchecksum": "^1.5.0",
"stripe": "^8.200.0",
"uuid": "^8.3.2",
"validator": "^13.7.0"
}
}