-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
78 lines (78 loc) · 3.44 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "gateway",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"packages/transports/*",
"packages/plugins/*",
"packages/executors/*",
"internal/*",
"e2e/*"
],
"packageManager": "[email protected]",
"scripts": {
"bench": "vitest bench --project bench",
"build": "yarn workspaces foreach -A -p run build",
"bundle": "yarn workspaces foreach -A -p run bundle",
"check:format": "prettier --check .",
"check:lint": "eslint 'packages/**/src/**/*.ts'",
"check:missing-peer-deps": "yarn install | grep YN0002 && exit 1 || exit 0",
"check:types": "yarn tsc",
"format": "yarn check:format --write",
"test": "vitest --project unit",
"test:bun": "bun test --bail",
"test:e2e": "vitest --project e2e",
"test:leaks": "cross-env \"LEAK_TEST=1\" jest --detectOpenHandles --detectLeaks"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-explicit-resource-management": "7.25.9",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "patch:@changesets/cli@npm%3A2.27.9#~/.yarn/patches/@changesets-cli-npm-2.27.9-5df61a909e.patch",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@tsconfig/strictest": "^2.0.5",
"@types/node": "^22.9.0",
"@yarnpkg/cli": "^4.5.3",
"@yarnpkg/core": "^4.1.6",
"@yarnpkg/plugin-pack": "^4.0.0",
"bun": "^1.1.34",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^17.11.1",
"graphql": "^16.9.0",
"graphql-middleware": "^6.1.35",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-sh": "^0.14.0",
"ts-jest": "29.2.5",
"ts-node": "^10.9.2",
"tsx": "4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.9.0",
"vite": "^6.0.0",
"vite-tsconfig-paths": "patch:vite-tsconfig-paths@npm%3A5.1.3#~/.yarn/patches/vite-tsconfig-paths-npm-5.1.3-1736ca1872.patch",
"vitest": "^2.1.3"
},
"resolutions": {
"@graphql-tools/delegate": "workspace:^",
"@opentelemetry/exporter-trace-otlp-http": "patch:@opentelemetry/exporter-trace-otlp-http@npm%3A0.56.0#~/.yarn/patches/@opentelemetry-exporter-trace-otlp-http-npm-0.56.0-dddd282e41.patch",
"@opentelemetry/otlp-exporter-base": "patch:@opentelemetry/otlp-exporter-base@npm%3A0.56.0#~/.yarn/patches/@opentelemetry-otlp-exporter-base-npm-0.56.0-ba3dc5f5c5.patch",
"@opentelemetry/resources": "patch:@opentelemetry/resources@npm%3A1.29.0#~/.yarn/patches/@opentelemetry-resources-npm-1.29.0-112f89f0c5.patch",
"@vitest/snapshot": "patch:@vitest/snapshot@npm%3A2.1.5#~/.yarn/patches/@vitest+snapshot+2.1.5.patch",
"cross-spawn": "7.0.6",
"esbuild": "0.24.0",
"graphql": "16.10.0",
"graphql-rate-limit@npm:^3.3.0": "patch:graphql-rate-limit@npm%3A3.3.0#~/.yarn/patches/graphql-rate-limit-npm-3.3.0-3ae882ba75.patch",
"ioredis-mock@npm:^8.8.3": "patch:ioredis-mock@npm%3A8.9.0#~/.yarn/patches/ioredis-mock-npm-8.9.0-530d4422b9.patch",
"jest-leak-detector": "patch:jest-leak-detector@npm%3A29.7.0#~/.yarn/patches/jest-leak-detector+29.7.0.patch",
"pkgroll": "patch:pkgroll@npm%3A2.5.1#~/.yarn/patches/pkgroll-npm-2.5.1-9b062c22ca.patch",
"tsx": "patch:tsx@npm%3A4.19.2#~/.yarn/patches/tsx-npm-4.19.2-a8f2312a2f.patch",
"vite": "^6.0.0"
}
}