-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 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
{
"name": "nodejs-express-app",
"version": "1.0.0",
"description": "",
"bin": "bin/createNodejsApp.js",
"main": "src/index.js",
"author": "Angular Minds",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"start": "pm2 start ecosystem.config.json --no-daemon",
"dev": "cross-env NODE_ENV=development nodemon src/index.js",
"test": "jest -i --colors --verbose --detectOpenHandles",
"test:watch": "jest -i --watchAll",
"coverage": "jest -i --coverage",
"coverage:coveralls": "jest -i --coverage --coverageReporters=text-lcov | coveralls",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"docker:prod": "docker-compose -f docker-compose.yml -f docker-compose.prod.yml up",
"docker:dev": "docker-compose -f docker-compose.yml -f docker-compose.dev.yml up",
"docker:test": "docker-compose -f docker-compose.yml -f docker-compose.test.yml up",
"prepare": "husky install"
},
"keywords": [],
"dependencies": {
"@sendgrid/mail": "^7.6.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.18.0",
"express-rate-limit": "^6.4.0",
"google-auth-library": "^8.0.2",
"helmet": "^5.0.2",
"http-status": "^1.5.1",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.3",
"mongoose": "^6.3.1",
"mongoose-delete": "^0.5.4",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"nodemailer": "^6.7.3",
"passport": "^0.5.2",
"passport-jwt": "^4.0.0",
"path": "^0.12.7",
"pm2": "^5.2.0",
"swagger-jsdoc": "^6.2.1",
"swagger-ui-express": "^4.3.0",
"validator": "^13.7.0",
"winston": "^3.7.2"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.14.0",
"eslint-plugin-jest": "^26.1.5",
"faker": "^6.6.6",
"husky": "^7.0.4",
"jest": "^28.0.2",
"lint-staged": "^12.4.1",
"node-mocks-http": "^1.11.0",
"nodemon": "^2.0.15",
"supertest": "^6.2.3"
}
}