-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
37 lines (37 loc) · 1.24 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
{
"name": "monorepo",
"packageManager": "yarn@4.2.2",
"workspaces": [
"packages/*",
"examples/*"
],
"main": "package.json",
"dependencies": {
"monorepo": "link:.",
"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 --include \"@apollo/*\" run build",
"build:docmodel": "yarn workspaces foreach --all --include \"@apollo/*\" exec api-extractor run"
},
"resolutions": {
"react": "19.0.0-rc-935180c7e0-20240524",
"react-dom": "19.0.0-rc-935180c7e0-20240524",
"react-server-dom-webpack": "19.0.0-beta-94eed63c49-20240425",
"@types/react": "npm:types-react@19.0.0-rc.0",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.0",
"@microsoft/api-documenter": "7.24.1"
},
"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",
"size-limit": "11.1.2"
}
}