-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.91 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
61
62
63
{
"name": "ecormerce-api",
"author": "jeffrey humbe",
"private": true,
"license": "MIT",
"scripts": {
"dev:start": "nodemon server.js",
"start": "yarn run clusters",
"clusters": "node serverCluster.js",
"heroku-postbuild": "cd client && yarn && yarn run build",
"install-client": "cd client && yarn install",
"install-server": "yarn install",
"start-server": "yarn run clusters",
"start-client": "cd client && yarn run start"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cloudinary": "^1.25.1",
"compression": "^1.7.4",
"connect-flash": "^0.1.1",
"cookie-parser": "*",
"cors": "^2.8.5",
"datauri": "^3.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.3",
"express": "^4.17.1",
"express-messages": "*",
"express-session": "*",
"express-validator": "*",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.5.9",
"mongoose": "*",
"morgan": "^1.10.0",
"multer": "*",
"nodemailer": "^6.4.15",
"openapi-types": "^8.0.0",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "*",
"paypal-rest-sdk": "^1.8.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-meta-tags": "^0.7.4",
"swagger-jsdoc": "^4.2.3",
"swagger-ui-express": "^4.1.4"
},
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"nodemon": "^2.0.5",
"npm-run-all": "^4.1.5",
"webpack-node-externals": "^2.5.2"
},
"engines": {
"node": "12.15.0"
}
}