-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
53 lines (53 loc) · 1.74 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
{
"name": "monorepo",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages",
"packages/*",
"examples/*",
"integration-test/*"
],
"main": "package.json",
"dependencies": {
"@changesets/cli": "^2.27.10",
"@yarnpkg/types": "^4.0.0",
"prettier": "^3.0.0",
"semver": "^7.6.0"
},
"scripts": {
"verify-package-json": "node ./scripts/verify-package-json.mjs",
"verify-package-shape": "node ./scripts/verify-package-shape.mjs",
"matrix": "node ./scripts/test-matrix.js",
"docs": "api-documenter markdown --input-folder temp --output-folder docs",
"build:libs": "yarn workspaces foreach --all -t --include \"@apollo/*\" run build",
"build:docmodel": "yarn workspaces foreach --all --include \"@apollo/*\" --exclude @apollo/experimental-nextjs-app-support exec api-extractor run",
"changeset-publish": "yarn build:libs && changeset publish",
"changeset-version": "changeset version && YARN_ENABLE_IMMUTABLE_INSTALLS=false yarn install --mode=skip-build"
},
"resolutions": {
"@microsoft/api-documenter": "7.24.1",
"graphql": "17.0.0-alpha.2",
"@tanstack/start": "1.99.6",
"@tanstack/react-router": "1.99.6",
"@tanstack/start-router-manifest": "1.99.0",
"@types/react": "19.0.2",
"@types/react-dom": "19.0.2",
"react": "19.0.0",
"react-dom": "19.0.0"
},
"devDependencies": {
"@microsoft/api-documenter": "7.24.3",
"@size-limit/file": "11.1.2",
"@size-limit/webpack": "11.1.2",
"@size-limit/webpack-why": "11.1.2",
"@types/node": "^22.10.9",
"@yarnpkg/cli": "^4.6.0",
"@yarnpkg/core": "^4.2.0",
"knip": "^5.43.1",
"size-limit": "11.1.2",
"typescript": "^5.7.3",
"zx": "^8.2.4"
}
}