-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.24 KB
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
75
76
77
78
{
"name": "@as-integrations/koa",
"description": "Apollo server integration for koa framework",
"version": "1.1.1",
"author": "Matt Gordon <matt@greenside.tech>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apollo-server-integrations/apollo-server-integration-koa.git"
},
"keywords": [
"GraphQL",
"Apollo",
"Server",
"Koa",
"Javascript"
],
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-koa#readme",
"bugs": {
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-koa/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=22"
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"clean": "git clean -dfqX",
"prepack": "pnpm 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 src/**/*.ts"
},
"devDependencies": {
"@apollo/server": "5.5.1",
"@apollo/server-integration-testsuite": "5.5.1",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@jest/globals": "29.7.0",
"@koa/bodyparser": "6.1.0",
"@koa/cors": "5.0.0",
"@types/jest": "29.5.14",
"@types/koa": "3.0.3",
"@types/koa__cors": "5.0.1",
"@types/node": "22.20.0",
"@types/supertest": "7.2.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"cspell": "10.0.1",
"eslint": "8.57.1",
"graphql": "16.14.2",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"koa": "3.2.1",
"prettier": "3.8.4",
"supertest": "7.2.2",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"typescript": "5.9.3"
},
"peerDependencies": {
"@apollo/server": "^5.0.0",
"koa": "^3.0.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11.8.0",
"onFail": "error"
}
}
}