-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
77 lines (77 loc) · 2.75 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
76
77
{
"name": "@azure-tools/typespec-azure-monorepo",
"version": "0.0.1",
"private": true,
"type": "module",
"packageManager": "pnpm@9.5.0",
"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": "pnpm run prettier --write",
"format:check": "pnpm run 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",
"prettier": "prettier . --config .prettierrc.json",
"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.11.0",
"@chronus/github": "^0.4.1",
"@eslint/js": "^8.57.0",
"@pnpm/find-workspace-packages": "^6.0.9",
"@types/node": "~18.11.19",
"@typescript-eslint/parser": "^7.17.0",
"@typescript-eslint/utils": "^7.17.0",
"c8": "^10.1.2",
"cspell": "^8.12.1",
"eslint": "^8.57.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-vitest": "^0.5.4",
"prettier": "~3.3.3",
"prettier-plugin-organize-imports": "~4.0.0",
"rimraf": "~6.0.1",
"syncpack": "^12.3.3",
"tsx": "^4.16.2",
"typescript": "~5.5.4",
"typescript-eslint": "^7.17.0",
"vitest": "^2.0.4"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
},
"dependencies": {
"picocolors": "~1.0.1"
},
"pnpm": {
"overrides": {
"@fluentui/react-theme": "9.1.17"
}
}
}