-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.22 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
{
"name": "idiomatic-hapi-ts-server",
"description": "Idiomatic Hapi + Typescript server.",
"version": "1.0.0",
"author": "Sean Hellebusch <[email protected]>",
"dependencies": {
"@apollographql/graphql-playground-html": "^1.6.24",
"@hapi/boom": "^9.0.0",
"@hapi/good": "^9.0.0",
"@hapi/hapi": "^19.1.1",
"@hapi/inert": "^6.0.1",
"@hapi/joi": "^17.1.0",
"@hapi/vision": "^6.0.0",
"@types/hapi__hapi": "^19.0.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"accept": "^3.1.3",
"apollo-datasource": "^0.7.0",
"apollo-server": "^2.10.1",
"bluebird": "^3.7.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-prettier": "^3.1.2",
"good": "^8.1.2",
"good-console": "^8.0.0",
"good-squeeze": "^5.1.0",
"graphql": "^14.6.0",
"hapi-auth-jwt2": "^9.0.1",
"hapi-swagger": "^12.1.0",
"jest-junit": "^10.0.0",
"pg-promise": "^10.4.3",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/boom": "^7.3.0",
"@types/graphql": "^14.5.0",
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"http-status-codes": "^1.4.0",
"humps": "^2.0.1",
"jest": "^25.1.0",
"lint-staged": "^10.0.7",
"lodash": "^4.17.15",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"ts-node-dev": "^1.0.0-pre.44",
"tsc": "^1.20150623.0",
"type-graphql": "^0.17.6",
"typescript": "^3.7.5"
},
"license": "MIT",
"lint-staged": {
"**/*.ts": [
"eslint --fix",
"git add"
]
},
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "docker-compose down && rm -rf postgres/data",
"dev": "tsc -w",
"lint": "eslint --ext .ts src",
"lint:fix": "npm run lint -- --fix",
"precommit": "lint-staged",
"prestart": "npm run build",
"pretest": "npm run build",
"start": "node dist/index.js",
"start:dev": "ts-node-dev src/index.ts",
"test": "./bin/start-tests.sh",
"test:clean": "./bin/clean-tests.sh",
"test:internal": "docker-compose -f src/test/container/docker-compose.yml -p idiomatic-hapi-ts-server-tests exec -T idiomatic-hapi-ts-server-test ./node_modules/jest/bin/jest.js"
}
}