-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.04 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
{
"name": "hapi-typescript-template",
"version": "1.0.0",
"description": "Basic setup for HapiJs with Typescript",
"main": "index.js",
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"format": "yarn lint && yarn fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"husky:prepare": "husky install",
"start": "yarn run clean && yarn run fix && yarn run compile && node build/src/index.js",
"start:watch": "ts-node-dev --respawn src/index.ts",
"test": "lab --typescript -I 'Reflect,core,_babelPolyfill,regeneratorRuntime,__core-js_shared__,CSS' ./test/*",
"test-cov-html": "lab -r html -o coverage.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jjdechavez/hapi-typescript-template.git"
},
"keywords": [
"hapi",
"typescript"
],
"author": "John Jerald De Chavez",
"license": "ISC",
"bugs": {
"url": "https://github.com/jjdechavez/hapi-typescript-template/issues"
},
"homepage": "https://github.com/jjdechavez/hapi-typescript-template#readme",
"devDependencies": {
"@hapi/code": "^9.0.0",
"@hapi/lab": "^25.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/boom": "^7.3.0",
"@types/dotenv": "^8.2.0",
"@types/hapi-auth-jwt2": "^8.6.1",
"@types/hapi-pino": "^8.0.1",
"@types/hapi__hapi": "^20.0.8",
"@types/joi": "^17.2.3",
"@types/jsonwebtoken": "^8.5.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^14.11.2",
"gts": "^3.1.0",
"husky": "^6.0.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.0.3"
},
"dependencies": {
"@hapi/boom": "^9.1.2",
"@hapi/hapi": "^20.1.3",
"@hapi/inert": "^6.0.3",
"@hapi/vision": "^6.1.0",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"hapi-auth-jwt2": "^10.2.0",
"hapi-pino": "^8.3.0",
"hapi-swagger": "^14.2.0",
"joi": "^17.4.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.13"
},
"files": [
"@hapi/code",
"@hapi/lab"
]
}