-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
75 lines (75 loc) · 2.63 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@azure-tools/typespec-azure-monorepo",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"run-all": "pnpm -r --filter=!./core/",
"build": "pnpm run-all --workspace-concurrency=Infinity --aggregate-output --reporter=append-only build && pnpm check:eng",
"check-version-mismatch": "syncpack list-mismatches",
"check:eng": "tsc -p ./tsconfig.eng.json --noEmit",
"change": "chronus",
"clean": "pnpm run-all run clean",
"cspell": "cspell --no-progress .",
"dogfood": "pnpm install && pnpm build && pnpm run-all dogfood",
"fix-version-mismatch": "syncpack fix-mismatches",
"format": "prettier --write .",
"format:check": "prettier . --check",
"lint": "eslint . --max-warnings=0",
"lint:fix": "eslint . --fix",
"pack:all": "chronus pack --pack-destination ./temp/artifacts",
"preinstall": "npx only-allow pnpm",
"prepare-publish": "node ./eng/scripts/prepare-publish.js",
"purge": "rimraf --glob \"packages/*/node_modules/\" --glob \"core/packages/*/node_modules/\"",
"regen-docs": "pnpm run-all --parallel --aggregate-output --reporter=append-only run regen-docs",
"regen-samples": "pnpm run-all run regen-samples",
"test:ci": "pnpm -r --filter=!./core/ --filter=!./core/** --aggregate-output --reporter=append-only --sequential test:ci",
"test:e2e": "pnpm run-all run test:e2e",
"test": "pnpm run-all run test",
"update-latest-docs": "pnpm run-all run update-latest-docs",
"watch": "tsc --build ./tsconfig.ws.json --watch",
"sync-labels": "tsx ./core/eng/common/scripts/labels/sync-labels.ts --config ./eng/config/labels.ts"
},
"devDependencies": {
"@chronus/chronus": "^0.13.0",
"@chronus/github": "^0.4.4",
"@eslint/js": "^9.12.0",
"@pnpm/find-workspace-packages": "^6.0.9",
"@types/node": "~22.7.5",
"c8": "^10.1.2",
"cspell": "^8.14.4",
"eslint": "^9.12.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "~3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-organize-imports": "~4.1.0",
"rimraf": "~6.0.1",
"syncpack": "^13.0.0",
"tsx": "^4.19.1",
"typescript": "~5.6.3",
"typescript-eslint": "^8.8.1",
"vitest": "^2.1.2"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
},
"dependencies": {
"picocolors": "~1.1.0"
},
"pnpm": {
"overrides": {
"@fluentui/react-theme": "9.1.17"
}
}
}