forked from Azure/typespec-azure
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.55 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
{
"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 ",
"check-version-mismatch": "syncpack list-mismatches",
"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"
},
"devDependencies": {
"@chronus/chronus": "^0.10.1",
"@chronus/github": "^0.3.2",
"@eslint/js": "^8.57.0",
"@pnpm/find-workspace-packages": "^6.0.9",
"@types/node": "~18.11.19",
"@typescript-eslint/parser": "^7.6.0",
"@typescript-eslint/utils": "^7.6.0",
"c8": "^9.1.0",
"cspell": "^8.7.0",
"eslint": "^8.57.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-vitest": "^0.5.3",
"prettier": "~3.2.5",
"prettier-plugin-organize-imports": "~3.2.4",
"rimraf": "~5.0.5",
"syncpack": "^12.3.0",
"typescript": "~5.4.5",
"typescript-eslint": "^7.6.0",
"vitest": "^1.5.0"
},
"syncpack": {
"dependencyTypes": [
"dev",
"overrides",
"peer",
"pnpmOverrides",
"prod",
"resolutions"
]
},
"dependencies": {
"picocolors": "~1.0.0"
},
"pnpm": {
"overrides": {
"@fluentui/react-theme": "9.1.17"
}
}
}