-
Notifications
You must be signed in to change notification settings - Fork 576
/
Copy pathpackage.json
132 lines (132 loc) · 4.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "graphql-yoga-monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-hive/graphql-yoga.git"
},
"homepage": "https://github.com/graphql-hive/graphql-yoga#readme",
"bugs": {
"url": "https://github.com/graphql-hive/graphql-yoga/issues"
},
"contributors": [
"Johannes Schickling <[email protected]>",
"Saihajpreet Singh <[email protected]> (https://github.com/saihaj)",
"Dotan Simha <[email protected]>",
"Arda TANRIKULU <[email protected]>",
"Laurin Quast <[email protected]>"
],
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.1.3"
},
"keywords": [
"graphql",
"server",
"api",
"graphql-server",
"apollo"
],
"scripts": {
"build": "pnpm --filter=@graphql-yoga/graphiql run build && pnpm --filter=@graphql-yoga/render-graphiql run build && pnpm --filter=graphql-yoga run generate-graphiql-html && bob build && pnpm --filter=graphql-yoga run inject-version",
"build-website": "pnpm build && cd website && pnpm build",
"changeset": "changeset",
"check": "pnpm --parallel -r run check",
"check:types": "tsc --pretty --noEmit",
"lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext ts,js,tsx,jsx .",
"postchangeset": "pnpm install --no-frozen-lockfile",
"postinstall": "husky",
"prebuild": "rimraf packages/*/dist",
"prettier": "prettier --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --ignore-path .prettierignore --check .",
"release": "pnpm build && changeset publish",
"start:docs": "pnpm --filter=website dev",
"test:integration": "cross-env INTEGRATION_TEST=true jest --forceExit",
"test:integration:leaks": "cross-env LEAKS_TEST=true pnpm run test:integration --detectLeaks",
"test:unit": "jest --detectOpenHandles",
"test:unit:leaks": "cross-env LEAKS_TEST=true pnpm run test:unit --detectLeaks"
},
"devDependencies": {
"@babel/core": "7.26.10",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/plugin-transform-class-properties": "7.25.9",
"@babel/preset-env": "7.26.9",
"@babel/preset-typescript": "7.27.0",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.28.1",
"@ianvs/prettier-plugin-sort-imports": "4.4.1",
"@playwright/browser-chromium": "^1.49.1",
"@theguild/eslint-config": "0.13.4",
"@theguild/prettier-config": "3.0.1",
"@tsconfig/strictest": "^2.0.5",
"@types/babel__core": "7.20.5",
"@types/babel__preset-env": "7.10.0",
"@types/html-minifier-terser": "^7.0.2",
"@types/jest": "29.5.14",
"@types/supertest": "6.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"babel-jest": "^29.0.0",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"bob-the-bundler": "7.0.1",
"cross-env": "7.0.3",
"eslint": "9.23.0",
"graphql": "16.10.0",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.5.0",
"playwright": "^1.49.1",
"postinstall-postinstall": "2.1.0",
"prettier": "3.5.3",
"prettier-plugin-pkg": "0.18.1",
"prettier-plugin-sh": "0.15.0",
"rimraf": "6.0.1",
"supertest": "7.1.0",
"ts-jest": "29.3.0",
"typescript": "5.8.2",
"wrangler": "4.5.1"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,yaml,md,json,html,mdx,prettierignore,eslintignore,js,mjs,cjs,md}": [
"prettier --write"
]
},
"pnpm": {
"patchedDependencies": {
"@changesets/[email protected]": "patches/@[email protected]",
"@graphiql/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
},
"overrides": {
"eslint-plugin-unicorn": "56.0.1",
"esbuild": "0.25.1",
"cookie": "1.0.2",
"graphql": "16.10.0",
"@changesets/assemble-release-plan": "5.2.3",
"@types/react": "19.0.12"
},
"onlyBuiltDependencies": [
"@nestjs/core",
"@playwright/browser-chromium",
"@prisma/client",
"@prisma/engines",
"@pulumi/docker",
"@pulumi/docker-build",
"@sveltejs/kit",
"@swc/core",
"bun",
"egg-bin",
"esbuild",
"netlify-cli",
"prisma",
"svelte-preprocess",
"workerd"
]
}
}