-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.22 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
{
"name": "ecommerce",
"version": "1.0.0",
"description": "",
"main": "server.js",
"dependencies": {
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.6.0",
"mongoose": "^5.9.27",
"multer": "^1.4.2",
"morgan": "^1.10.0",
"nodemon": "^2.0.4",
"paytm-pg-node-sdk": "^1.0.4",
"stripe": "^8.89.0",
"aws-sdk": "^2.329.0",
"concurrently": "^4.0.1",
"multer-s3": "^2.7.0",
"path": "^0.12.7",
"url": "^0.11.0",
"validator": "^10.8.0"
},
"devDependencies": {
"gh-pages": "^3.1.0"
},
"scripts": {
"start": "node server.js",
"heroku-postbuild": "cd client && npm install --only=dev && npm install && npm run build"
},
"author": "",
"license": "ISC",
"private": true,
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": "v14.6.0"
},
"proxy": "http://localhost:5000"
}