-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 KB
/
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": "ecommerce",
"version": "1.0.0",
"description": "",
"main": "backend/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon backend/server.js",
"start": "nodemon backend/server.js",
"install-server": "cd backend && npm install",
"start-server": "node backend/server.js",
"install-frontend": "cd frontend && npm install",
"build-frontend": "cd frontend && npm run build",
"start-frontend": "cd frontend && npm run start",
"render-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.1",
"cloudinary": "^1.35.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.1",
"nodemailer": "^6.8.0",
"nodemon": "^3.1.0",
"stripe": "^12.0.0",
"validator": "^13.7.0"
},
"proxy": "https://juicemart-b.onrender.com"
}