-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 2.03 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
{
"name": "@as-integrations/hapi",
"description": "An Apollo Server integration for use with Hapi",
"version": "2.0.1",
"author": {
"name": "David Castro",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-hapi"
},
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-hapi",
"bugs": {
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-hapi/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "git clean -dfqX",
"install-with-npm-8.5": "npm i -g npm@^8.5.0 && npm i",
"prepack": "npm run build",
"prettier-check": "prettier --check .",
"prettier-fix": "prettier --write .",
"publish-changeset": "changeset publish",
"spell-check": "cspell lint '**' --no-progress || (echo 'Add any real words to cspell-dict.txt.'; exit 1)",
"test": "jest",
"test:ci": "jest --coverage --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"watch": "tsc --build --watch",
"lint": "eslint ."
},
"devDependencies": {
"@apollo/server": "4.7.3",
"@apollo/server-integration-testsuite": "4.7.3",
"@apollo/utils.withrequired": "3.0.0",
"@changesets/changelog-github": "0.4.8",
"@changesets/cli": "2.26.1",
"@types/hapi__hapi": "20.0.13",
"@types/jest": "29.5.2",
"@types/node": "16.18.35",
"@typescript-eslint/eslint-plugin": "5.59.9",
"@typescript-eslint/parser": "5.59.9",
"cspell": "6.31.1",
"eslint": "8.42.0",
"jest": "29.5.0",
"jest-junit": "16.0.0",
"node-fetch": "2.6.11",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"typescript": "5.1.3"
},
"peerDependencies": {
"@apollo/server": "^4.0.0",
"@hapi/hapi": "^20.2.2 || ^21.0.0"
},
"volta": {
"npm": "9.7.1",
"node": "18.16.0"
}
}