-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
31 lines (30 loc) · 868 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
{
"name": "electronicshop",
"version": "1.0.0",
"description": "mern stack app",
"main": "app.js",
"scripts": {
"start": "node backend/app.js",
"server": "nodemon backend/app.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend ",
"vercel-build": "npm install --prefix frontend && npm run build --prefix frontend "
},
"author": "Emmanuel Francois",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.27.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.9",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"nodemon": "^2.0.12",
"stripe": "^8.217.0",
"validator": "^13.1.17"
}
}