-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1.25 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
37
38
39
40
41
{
"name": "ecommerce-mern",
"version": "1.0.0",
"description": "An E-commerce Website developed using MERN stack where user can buy and checkout product with ease and add their review and rating for the products.",
"main": "./backend/server.js",
"scripts": {
"start": "bun ./backend/server.js",
"dev": "bun --hot ./backend/server.js",
"clean": "rimraf -rf build",
"build": "cd frontend && bun run clean && bun run build",
"update": "pnpm up --latest && cd frontend && pnpm up --latest",
"preinstall": "cd frontend && pnpm install",
"push": "git add -A && git commit -m \"Update Changes & Bug Fixes\" && git push origin master"
},
"pre-commit": [
"build"
],
"author": "Nikhil Rajput",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^8.1.3",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^2.2.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-fileupload": "^1.5.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.4.0",
"nodemailer": "^6.9.13",
"pre-commit": "^1.2.2",
"rimraf": "^5.0.7",
"stripe": "^15.8.0",
"validator": "^13.12.0"
},
"devDependencies": {
"nodemon": "^3.1.2"
}
}