-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.12 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
{
"name": "workers-graphql",
"type": "module",
"imports": {
"#*": "./src/*"
},
"scripts": {
"dev": "wrangler --config='wrangler.toml' dev",
"dev:remote": "wrangler --config='wrangler.toml' dev --remote",
"build": "wrangler --config='wrangler.toml' deploy --outdir='dist' --dry-run",
"format": "biome format . --error-on-warnings --write",
"lint": "biome lint . --error-on-warnings --write",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@envelop/core": "^5.0.2",
"@envelop/immediate-introspection": "^4.0.0",
"@graphql-yoga/plugin-defer-stream": "^3.10.3",
"@graphql-yoga/plugin-graphql-sse": "^3.10.3",
"@graphql-yoga/plugin-response-cache": "^3.12.3",
"graphql": "^16.9.0",
"graphql-yoga": "^5.10.3",
"hono": "^4.6.11"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@cloudflare/workers-types": "^4.20241112.0",
"@total-typescript/ts-reset": "^0.6.1",
"@types/node": "^22.9.3",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"wrangler": "^3.90.0"
},
"sideEffects": false,
"packageManager": "[email protected]"
}