-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
77 lines (77 loc) · 1.97 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
{
"name": "hapi-boilerplate",
"version": "0.0.2",
"description": "",
"main": "server.js",
"scripts": {
"start": "NODE_PATH=. node ./server.js",
"dev": "NODE_PATH=. nodemon -e 'js,yaml' -I ./server.js",
"prod": "systemctl --user restart hapi-boilerplate.service",
"stop": "pm2 stop ./ecosystem.config.yaml",
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "npx eslint . && npx prettier --check ."
},
"author": "Wigger Boelens",
"private": true,
"dependencies": {
"@hapi/boom": "^9.1.3",
"@hapi/bourne": "^2.0.0",
"@hapi/glue": "^8.0.0",
"@hapi/hapi": "^19.2.0",
"@hapi/inert": "^6.0.3",
"@hapi/joi": "^17.1.1",
"@hapi/vision": "^6.1.0",
"@sentry/node": "^5.29.2",
"aguid": "^2.0.0",
"argon2": "^0.27.2",
"blipp": "^4.0.2",
"config": "^3.3.6",
"fs-extra": "^9.1.0",
"hapi-auth-jwt2": "^10.2.0",
"hapi-crud-acl": "1.0.2",
"hapi-pino": "^8.3.0",
"hapi-swagger": "^13.1.0",
"inverse": "^1.0.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^8.5.1",
"knex": "^0.21.19",
"lodash": ">=4.17.21",
"objection": "^2.2.15",
"pino": "^6.13.0",
"pino-pretty": "^4.8.0",
"pino-sentry": "^0.2.5",
"pino-tee": "^0.3.0",
"readline": "^1.3.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"@hapi/code": "^8.0.3",
"@hapi/lab": "^24.3.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.24.0",
"jest": "^26.6.3",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"randomstring": "^1.2.1",
"supertest": "^6.1.4",
"tape": "^5.3.0"
},
"optionalDependencies": {
"sqlite3": "^5.0.2",
"pg": "^8.7.1",
"mysql": "^2.18.1"
},
"jest": {
"testTimeout": 20000,
"modulePaths": [
"."
]
}
}