-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.31 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
{
"dependencies": {
"@elastic/elasticsearch": "^7.15.0",
"argon2": "^0.28.3",
"aws-sdk": "^2.1035.0",
"bull": "^4.1.0",
"cookie-parser": "~1.4.4",
"debug": "~2.6.9",
"express": "~4.16.1",
"express-jwt": "^6.1.0",
"express-validator": "^6.13.0",
"ioredis": "^4.28.0",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"mysql2": "^2.3.3",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.2",
"sequelize": "^6.12.0-alpha.1",
"sequelize-cli": "^6.3.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.25.2",
"husky": "^7.0.4",
"lint-staged": "^11.2.6",
"mocha": "^9.1.3",
"nodemon": "^2.0.14",
"supertest": "^6.1.6"
},
"name": "starter-nodejs",
"description": "Boilerplate code to kick-start projects in Node.js, includes an HTTP layer, database layer, job queue along with Docker setup.",
"private": true,
"scripts": {
"postinstall": "husky install",
"start": "node bin/www",
"start:app": "nodemon --legacy-watch",
"start:schedule": "nodemon --legacy-watch schedule.js",
"start:worker": "nodemon --legacy-watch worker.js",
"test": "mocha --recursive"
},
"version": "0.0.0"
}