-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
33 lines (33 loc) · 1020 Bytes
/
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
{
"name": "monorepo",
"private": true,
"packageManager": "[email protected]",
"workspaces": [
"packages/*",
"examples/*"
],
"main": "package.json",
"dependencies": {
"@changesets/cli": "^2.27.10",
"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": {
"@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"
}
}