-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.34 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.34 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "lush-server",
"version": "1.0.0",
"description": "Server side application of Ondemand application",
"bin": "bin/createNodejsApp.js",
"main": "src/index.js",
"repository": "",
"author": "Gimnath",
"license": "MIT",
"engines": {
"node": "14.16.1"
},
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"install-client": "cd client && npm install",
"build": "cd client && npm run build",
"heroku-postbuild": "npm run install-client && npm run build",
"prod": "concurrently \"cd client && npm start\" \"nodemon src/index.js\""
},
"keywords": [
"node",
"node.js",
"boilerplate",
"generator",
"express",
"rest",
"api",
"mongodb",
"mongoose",
"es6",
"es7",
"es8",
"es9",
"jest",
"travis",
"docker",
"passport",
"joi",
"eslint",
"prettier"
],
"dependencies": {
"aws-sdk": "^2.1111.0",
"axios": "^0.26.1",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"concurrently": "^7.5.0",
"cors": "^2.8.5",
"cross-env": "^7.0.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.0",
"express-rate-limit": "^5.0.0",
"geolib": "^3.3.3",
"helmet": "^4.1.0",
"http-status": "^1.4.0",
"joi": "^17.3.0",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"moment": "^2.24.0",
"mongoose": "^5.7.7",
"mongoose-sequence": "^5.3.1",
"morgan": "^1.9.1",
"multer": "^1.4.4",
"node-cron": "^3.0.0",
"nodemailer": "^6.3.1",
"nodemon": "^2.0.16",
"passport": "^0.4.0",
"passport-jwt": "^4.0.0",
"pdf-creator-node": "^2.3.4",
"pm2": "^5.1.0",
"stripe": "^11.9.1",
"swagger-jsdoc": "^6.0.8",
"swagger-ui-express": "^4.1.6",
"validator": "^13.0.0",
"winston": "^3.2.1",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"coveralls": "^3.0.7",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^24.0.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-security": "^1.4.0",
"faker": "^5.1.0",
"husky": "^7.0.0",
"jest": "^26.0.1",
"lint-staged": "^11.0.0",
"node-mocks-http": "^1.8.0",
"prettier": "^2.0.5",
"supertest": "^6.0.1"
}
}