-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 5.08 KB
/
Copy pathpackage.json
File metadata and controls
130 lines (130 loc) · 5.08 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
125
126
127
128
129
130
{
"name": "graphiql-monorepo",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*",
"functions",
"packages/graphiql/test",
"examples/monaco-graphql-webpack",
"examples/monaco-graphql-nextjs",
"examples/monaco-graphql-react-vite",
"examples/graphiql-vite",
"examples/graphiql-vite-react-router",
"examples/graphiql-webpack"
]
},
"packageManager": "yarn@4.16.0",
"dependenciesMeta": {
"cypress": {
"built": true
}
},
"scripts": {
"types:check": "turbo run types:check && tsgo --noEmit -p scripts/tsconfig.json",
"dev:graphiql": "turbo run dev --filter=graphiql...",
"dev:example-nextjs": "turbo run dev --filter=example-graphiql-nextjs...",
"dev:example-vite": "turbo run dev --filter=example-graphiql-vite...",
"build:graphiql": "turbo run build --filter=graphiql...",
"build": "yarn build-clean && yarn build:tsc && yarn build:nontsc",
"build-bundles": "yarn prebuild-bundles && yarn wsrun:noexamples --stages build-bundles",
"build-bundles-clean": "rimraf '{packages,examples}/**/{bundle,cdn,webpack}'",
"build-clean": "tsgo --build --clean",
"build-docs": "rimraf packages/graphiql/typedoc && typedoc",
"build:nontsc": "yarn wsrun:noexamples --exclude-missing --serial build",
"build:clean": "tsgo --build --clean",
"build:watch": "tsgo --build --watch",
"build-demo": "wsrun -m build-demo",
"watch": "yarn build:watch",
"watch-vscode": "yarn build:tsc && yarn workspace vscode-graphql compile",
"watch-vscode-exec": "yarn workspace vscode-graphql-execution compile",
"cypress-open": "concurrently 'yarn dev:graphiql' 'yarn workspace graphiql cypress-open'",
"e2e": "yarn workspace graphiql e2e",
"oxlint": "oxlint --max-warnings=0 --ignore-path .eslintignore",
"fix": "yarn lint-fix && yarn format && yarn svgo",
"license-check": "jsgl --local .",
"lint": "yarn oxlint && yarn format-check && yarn lint-cspell",
"lint-cspell": "cspell --unique --no-progress --no-must-find-files",
"lint-fix": "yarn oxlint --fix",
"postinstall": "patch-package --patch-dir resources/patches",
"prebuild-bundles": "yarn build-bundles-clean",
"prepublishOnly": "./scripts/prepublish.sh",
"postbuild": "wsrun --exclude-missing postbuild",
"format": "oxfmt --write .",
"format-check": "oxfmt --check .",
"svgo": "svgo --pretty --indent 2 --eol lf --final-newline -r -f . --exclude node_modules",
"svgo-check": "yarn svgo && git diff --exit-code -- '*.svg'",
"ci:version": "yarn changeset version && yarn install --no-immutable && yarn build && yarn fix",
"release": "yarn build && yarn build-bundles && yarn changeset publish",
"repo:lint": "manypkg check",
"repo:fix": "manypkg fix",
"repo:resolve": "node scripts/set-resolution.mts",
"t": "yarn test",
"test": "turbo run test --filter='./packages/*'",
"build:tsc": "tsgo --build && node resources/patch-monaco-editor-type.mts",
"wsrun:noexamples": "wsrun --exclude-missing --exclude example-monaco-graphql-react-vite --exclude example-monaco-graphql-nextjs --exclude example-monaco-graphql-webpack --exclude example-graphiql-webpack",
"gen-agenda": "wgutils agenda gen"
},
"dependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.29.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-private-methods": "^7.24.7",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.0",
"@babel/register": "^7.21.0",
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.27.7",
"@types/codemirror": "^0.0.90",
"@types/copy": "^0.3.1",
"@types/express": "^4.17.11",
"@types/node": "^24",
"@types/rimraf": "^3.0.2",
"@types/ws": "8.2.2",
"@typescript/native-preview": "^7.0.0-dev",
"babel-plugin-macros": "^3.1.0",
"babel-plugin-transform-import-meta": "^2.3.3",
"concurrently": "^7.0.0",
"copy": "^0.3.2",
"cspell": "^10.0.1",
"eslint-plugin-react-hooks": "^6.0.0-rc.1",
"execa": "^7.1.1",
"js-green-licenses": "4.0.0",
"mkdirp": "^1.0.4",
"msw": "^2.13.4",
"oxfmt": "^0.45.0",
"oxlint": "^1",
"oxlint-plugin-eslint": "^1",
"oxlint-tsgolint": "latest",
"patch-package": "^7.0.2",
"postinstall-postinstall": "^2.1.0",
"rimraf": "^3.0.2",
"turbo": "^2.9.14",
"typedoc": "^0.28.19",
"typescript": "^5.8.0",
"vitest": "^4.1.6",
"wgutils": "^1.2.5",
"wsrun": "^5.2.4"
},
"resolutions": {
"@babel/traverse": "^7.23.2",
"vscode-languageserver-types": "3.17.3",
"markdown-it": "14.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"vite": "6.4.3"
},
"devDependencies": {
"@vscode/vsce": "^2.22.1-2",
"jsdom": "^29.0.2",
"ovsx": "0.8.3",
"svgo": "^4.0.1"
}
}