-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.74 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mern-ecommerce-app",
"version": "1.0.0",
"description": "MERN stack E-commerce app",
"main": "server.js",
"type": "module",
"engines": {
"node": "14.x"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node backend/server.js",
"server": "nodemon backend/server.js",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder.js",
"data:destroy": "node backend/seeder.js -d",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix frontend && npm run build --prefix frontend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Rajatm544/MERN-Ecommerce.git"
},
"author": "Rajat M",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rajatm544/MERN-Ecommerce/issues"
},
"homepage": "https://github.com/Rajatm544/MERN-Ecommerce#readme",
"dependencies": {
"aws-sdk": "^2.983.0",
"bcryptjs": "^2.4.3",
"colors": "^1.4.0",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-session": "^1.4.0",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-handler": "^1.1.4",
"express-session": "^1.17.2",
"gravatar": "^1.8.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.0",
"morgan": "^1.10.0",
"multer": "^1.4.3",
"multer-s3": "^2.9.0",
"nodemailer": "^6.6.3",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"passport-linkedin-oauth2": "^2.0.0",
"passport-twitter": "^1.0.4",
"stripe": "^8.176.0"
},
"devDependencies": {
"concurrently": "^6.2.0",
"nodemon": "^2.0.8"
}
}