-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.05 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
{
"author": "BlackBox Vision",
"contributors": [
],
"description": "Hapi + Typescript + Vision",
"license": "MIT",
"name": "typescript-hapi-vision",
"version": "1.0.0",
"engines": {
"node": ">=10.0"
},
"scripts": {
"build-ts": "tsc",
"start": "node dist/src/index.js",
"debug": "nodemon --inspect dist/src/",
"docker:logs": "docker-compose logs",
"docker:ps": "docker-compose ps",
"docker:start": "docker-compose up",
"docker:stop": "docker-compose -f docker-compose.yml down -v --remove-orphans",
"nodemon:build": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/index.ts",
"nodemon:start": "npm run nodemon:build",
"format:lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"format:prettier": "./node_modules/.bin/prettier --tab-width 4 --print-width 120 --single-quote --trailing-comma all --write 'src/**/*.ts'",
"postinstall": "npm run build-ts",
"test": "NODE_ENV=test nyc --reporter=lcov --require ts-node/register tape test/**/*.spec.{ts,js} | tap-spec"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
]
},
"dependencies": {
"@types/code": "^4.0.5",
"@types/dotenv": "^6.1.0",
"@types/hapi": "^18.0.1",
"@types/joi": "^14.3.2",
"@types/nedb": "^1.8.7",
"@types/node": "^11.11.0",
"@types/tape": "^4.2.33",
"dotenv": "^6.2.0",
"hapi": "^18.1.0",
"hapi-boom-decorators": "^4.1.2",
"hapi-swagger": "^9.3.2",
"hapijs-status-monitor": "ziyasal/hapijs-status-monitor",
"hbs": "^4.0.3",
"inert": "^5.1.2",
"joi": "^14.3.1",
"nedb": "^1.8.0",
"typed-rest-client": "^1.1.2",
"vision": "^5.4.4",
"winston": "^3.2.1"
},
"devDependencies": {
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"prettier": "^1.16.4",
"tap-spec": "^5.0.0",
"tape": "^4.10.1",
"ts-node": "^8.0.3",
"tslint": "^5.13.1",
"typescript": "^3.3.3333"
},
"keywords": [
"api",
"nodejs",
"hapi",
"typescript",
"swagger"
]
}