-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·39 lines (39 loc) · 1 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
{
"name": "ecommerce-api",
"version": "1.1.0",
"description": "An open source ecommerce api built with Node.js, Express.js, MongoDB, and Stripe.",
"main": "./src/server.js",
"scripts": {
"start": "node ./src/server.js",
"dev": "nodemon ./src/server.js",
"push":"git add -A && git commit -m \"Update Changes & Bug Fixes\" && git push origin master"
},
"author": "Nikhil Rajput",
"license": "MIT",
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"bcrypt": "^5.1.0",
"body-parser": "^1.20.1",
"cloudinary": "^1.33.0",
"compresion": "^1.7.11",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"helmet": "^6.0.1",
"jsonwebtoken": "^9.0.0",
"mongoose": "^6.8.2",
"morgan": "^1.10.0",
"stripe": "^11.5.0",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.20"
},
"engines": {
"node": ">=17.x",
"pnpm": ">=7.x",
"npm": ">=8.x"
}
}