-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
42
43
44
45
46
47
{
"name": "ecommerce",
"version": "1.0.0",
"description": "",
"main": "backend/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node backend/server.js",
"startRedis": "node backend/Controllers/RedisQueues.js",
"client": "cd frontend && npm run start",
"dev": "nodemon backend/server.js",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false && npm install --prefix frontend && npm run build --prefix frontend"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.1",
"cloudinary": "^1.28.1",
"cloudinary-core": "^2.12.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-async-handler": "^1.2.0",
"express-fileupload": "^1.2.1",
"express-session": "^1.17.3",
"google-auth-library": "^7.11.0",
"helmet": "^5.1.0",
"ioredis": "^5.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.1.4",
"node-cron": "^3.0.1",
"node-fetch": "^2.6.7",
"nodemailer": "^6.7.2",
"nodemailer-express-handlebars": "^4.0.0",
"serve": "^13.0.2",
"stripe": "^8.219.0",
"uuid": "^8.3.2",
"validator": "^13.7.0"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}