-
-
Notifications
You must be signed in to change notification settings - Fork 828
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.83 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.83 KB
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
{
"name": "graphql-tools-monorepo",
"description": "Useful tools to create and manipulate GraphQL schemas.",
"repository": {
"type": "git",
"url": "git+https://github.com/ardatan/graphql-tools.git"
},
"homepage": "https://github.com/ardatan/graphql-tools#readme",
"bugs": {
"url": "https://github.com/ardatan/graphql-tools/issues"
},
"private": true,
"workspaces": [
"packages/*",
"packages/loaders/*",
"packages/executors/*",
"website"
],
"packageManager": "[email protected]",
"keywords": [
"GraphQL",
"Apollo",
"JavaScript",
"TypeScript",
"Mock",
"Schema",
"Schema Language",
"Tools"
],
"scripts": {
"build": "bob build",
"build:api-docs": "tsx scripts/build-api-docs",
"ci:lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts . --output-file eslint_report.json --format json",
"clean-dist": "rimraf \"packages/**/dist\" && rimraf \".bob\"",
"lint": "cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --ext .ts .",
"postbuild": "tsx scripts/postbuild.ts",
"postinstall": "patch-package && husky install && node scripts/fix-astrojs-typings.js",
"prerelease": "npm run build",
"prettier": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore --write --list-different .",
"prettier:check": "prettier --cache --ignore-path .gitignore --ignore-path .prettierignore --check .",
"release": "npx changeset publish",
"test": "jest --no-watchman",
"test:bun": "bun test",
"test:leaks": "cross-env \"LEAK_TEST=1\" jest --no-watchman --detectOpenHandles --detectLeaks --forceExit",
"ts:check": "tsc --noEmit",
"version": "npx changeset version"
},
"optionalDependencies": {
"bun": "1.3.11"
},
"devDependencies": {
"@apollo/client": "4.1.6",
"@babel/core": "7.29.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-explicit-resource-management": "7.27.4",
"@babel/preset-env": "7.29.2",
"@babel/preset-typescript": "7.28.5",
"@changesets/changelog-github": "0.6.0",
"@changesets/cli": "2.30.0",
"@envelop/core": "5.5.1",
"@graphql-tools/delegate": "12.0.12",
"@theguild/prettier-config": "3.0.1",
"@theguild/remark-mermaid": "0.3.0",
"@types/jest": "30.0.0",
"@types/node": "25.5.0",
"@typescript-eslint/eslint-plugin": "8.57.1",
"@typescript-eslint/parser": "8.57.1",
"@urql/core": "6.0.1",
"babel-jest": "30.3.0",
"bob-the-bundler": "7.0.1",
"concurrently": "9.2.1",
"cookie": "1.1.1",
"cross-env": "10.1.0",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.24.0",
"eslint-plugin-promise": "7.2.1",
"globby": "11.1.0",
"graphql": "16.13.1",
"graphql-yoga": "5.18.1",
"husky": "9.1.7",
"jest": "30.3.0",
"lint-staged": "16.4.0",
"lru-cache": "10.4.3",
"patch-package": "8.0.1",
"prettier": "3.8.1",
"prettier-plugin-tailwindcss": "0.7.2",
"react": "19.2.4",
"react-dom": "19.2.4",
"rimraf": "6.1.3",
"ts-jest": "29.4.6",
"tsx": "4.21.0",
"typedoc": "0.25.13",
"typedoc-plugin-markdown": "3.17.1",
"typedoc-plugin-rename-defaults": "0.7.3",
"typescript": "5.9.3",
"wonka": "6.3.5"
},
"overrides": {
"cookie": "1.1.1",
"esbuild": "0.27.4",
"estree-util-value-to-estree": "3.5.0",
"extract-zip": {
"yauzl": "3.2.1"
},
"graphql": "16.13.1",
"miniflare": {
"undici": "7.24.5"
},
"react": "19.2.4",
"react-dom": "19.2.4",
"tmp": "0.2.5"
},
"lint-staged": {
"packages/**/src/**/*.{ts,tsx}": [
"cross-env \"ESLINT_USE_FLAT_CONFIG=false\" eslint --fix"
],
"**/*.{ts,tsx,graphql,yml,md,mdx,json,js}": [
"prettier --write"
]
}
}