-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 907 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
{
"name": "quickpick",
"version": "1.0.0",
"description": "This is a backend project built using Node, Express, and Mongoose with RestAPIs. Users can create an account, authenticate using email OTP, view and filter products, add products to the cart, apply a coupon, and place orders. The admin can update the order status, add products to the app, and edit product information.",
"main": "server.js",
"type": "module",
"engines": {
"node": ">=14.20.1"
},
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"author": "ayusharma-ctrl",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.0",
"cloudinary": "^1.36.1",
"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": "^7.0.3",
"nodemailer": "^6.9.1"
}
}