-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
{
"name": "@as-integrations/cloudflare-workers",
"description": "An integration to use Cloudflare Workers as a hosting service with Apollo Server v4",
"version": "1.0.2",
"author": "Kim Nguyen Huu",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-cloudflare-workers"
},
"homepage": "https://github.com/apollo-server-integrations/apollo-server-integration-cloudflare-workers#readme",
"bugs": {
"url": "https://github.com/apollo-server-integrations/apollo-server-integration-cloudflare-workers/issues"
},
"keywords": [
"graphql",
"apollo",
"server",
"cloudflare",
"workers",
"typescript"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=16.0"
},
"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"
},
"devDependencies": {
"@apollo/server-integration-testsuite": "4.11.3",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.12",
"@cloudflare/workers-types": "4.20250124.3",
"@types/jest": "29.5.14",
"cspell": "8.17.2",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"prettier": "3.4.2",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"volta": {
"node": "20.18.2",
"npm": "10.9.2"
},
"peerDependencies": {
"@apollo/server": "^4.3.0",
"graphql": "^16.6.0"
}
}