-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.69 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
{
"name": "apollo-federaion-cloudflare-workers",
"scripts": {
"build": "npm run build --workspaces",
"build:schema": "rover supergraph compose --config ./supergraph.yaml > supergraph.graphql",
"lint": "npm run lint --workspaces",
"postinstall": "patch-package",
"prettier": "npm run prettier --workspaces",
"prettier:fix": "npm run prettier:fix --workspaces",
"publish": "npm run publish --workspaces",
"start": "npx miniflare --modules"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dnalborczyk/apollo-server-cloudflare-workers.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/dnalborczyk/apollo-server-cloudflare-workers/issues"
},
"homepage": "https://github.com/dnalborczyk/apollo-server-cloudflare-workers#readme",
"workspaces": [
"subgraph-locations",
"subgraph-reviews",
"supergraph-gateway"
],
"devDependencies": {
"@apollo/rover": "^0.10.0",
"@cloudflare/workers-types": "^4.20221111.1",
"@esbuild-plugins/node-globals-polyfill": "^0.1.1",
"@esbuild-plugins/node-modules-polyfill": "^0.1.4",
"@graphql-codegen/cli": "^2.16.1",
"@graphql-codegen/typescript": "^2.8.5",
"@graphql-codegen/typescript-resolvers": "^2.7.10",
"@miniflare/tre": "^3.0.0-next.10",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"esbuild": "^0.16.7",
"eslint": "^8.29.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"patch-package": "^6.5.0",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^4.9.4",
"wrangler": "^2.6.2"
}
}