forked from AlexanderC/DiseaseControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "dc-api",
"version": "1.0.0",
"description": "DiseaseControl API",
"main": "index.js",
"scripts": {
"start:dev": "DEBUG=* npx nodemon --watch controllers --watch plugins --watch src --watch templates --watch models --watch web ./web/server.js",
"start": "npx pm2 start ./web/server.js",
"stop": "npx pm2 stop ./web/server.js",
"monitor": "npx pm2 monit",
"postinstall": "npx check-engine",
"lint": "npx eslint src web plugins models controllers --fix",
"lint-staged": "npx lint-staged",
"_db:configure": "./bin/db-config.sh",
"db:seeds:up": "npm run _db:configure && npx sequelize-cli db:seed:all",
"db:seeds:down": "npm run _db:configure && npx sequelize-cli db:seed:undo:all"
},
"repository": {
"type": "git",
"url": "[email protected]:AlexanderC/DiseaseControl.git"
},
"author": {
"name": "Alex Cucer",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"@hapi/hapi": "19.x.x",
"@hapi/inert": "6.x.x",
"@hapi/joi": "17.x.x",
"@hapi/vision": "6.x.x",
"boom": "7.x.x",
"check-engine": "^1.8.1",
"crypto-random-string": "3.x.x",
"debug": "4.x.x",
"dotenv": "8.x.x",
"fs-extra": "8.x.x",
"hapi-and-healthy": "7.x.x",
"hapi-auth-jwt2": "8.x.x",
"hapi-cors": "1.x.x",
"hapi-graceful-pm2": "1.x.x",
"hapi-pagination": "3.x.x",
"hapi-plugin-websocket": "2.x.x",
"hapi-sequelizejs": "3.x.x",
"hapi-swagger": "12.x.x",
"inflected": "2.x.x",
"jsonwebtoken": "8.x.x",
"mysql2": "2.x.x",
"nodemailer": "6.x.x",
"pm2": "4.x.x",
"sequelize": "5.x.x",
"sequelize-cli": "^5.5.1",
"sequelize-encrypted": "1.x.x",
"sequelize-paginate": "1.x.x",
"twig": "1.x.x"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^1.3.1",
"lint-staged": "^8.1.5",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-staged"
}
},
"lint-staged": {
"*.js": [
"npx eslint src web plugins models controllers --fix",
"git add"
]
},
"engines": {
"node": ">=12.0.0"
}
}