-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.44 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
{
"name": "ts-agh",
"version": "1.0.0",
"description": "A TypeScript Apollo GraphQL Hapi server",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"prettier": "prettier --write '*.js' 'src/**/*.ts'",
"start": "node -r dotenv/config build/index.js",
"test": "NODE_ENV=test ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/swashcap/ts-agh.git"
},
"keywords": [
"hapi",
"apollo",
"graphql"
],
"author": "Cory Reed",
"license": "MIT",
"bugs": {
"url": "https://github.com/swashcap/ts-agh/issues"
},
"homepage": "https://github.com/swashcap/ts-agh#readme",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/graphql": "^14.0.3",
"@types/hapi": "^17.8.0",
"ava": "^1.0.0-rc.2",
"graphql-tools": "^4.0.3",
"husky": "^1.2.0",
"prettier": "^1.15.3",
"typescript": "^3.2.2"
},
"dependencies": {
"apollo-server-hapi": "^2.2.6",
"dotenv": "^6.2.0",
"good": "^8.1.1",
"good-console": "^7.1.0",
"good-squeeze": "^5.1.0",
"graphql": "^14.0.2",
"hapi": "^17.8.1"
},
"private": true,
"ava": {
"babel": false,
"compileEnhancements": false,
"files": [
"build/**/__tests__/**/*.js"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "npm test"
}
}
}