-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.64 KB
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
{
"name": "quality-gateway",
"version": "0.0.0",
"private": true,
"description": "Modern PNPM monorepo of composable quality configs (ESLint & more) + an installable CLI.",
"license": "MIT",
"author": "Ondřej Misák <email@ondrejmisak.cz> (https://ondrejmisak.cz/)",
"type": "module",
"scripts": {
"build": "pnpm --filter \"./packages/*\" run build",
"dev": "pnpm --filter \"./packages/*\" --parallel run dev",
"typecheck": "pnpm --filter \"./packages/*\" --filter \"./internal/*\" run typecheck && tsc -p tsconfig.json",
"clean": "pnpm --filter \"./packages/*\" run clean",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"mutation": "stryker run",
"prepare": "lefthook install",
"check": "qg check",
"fix": "qg fix"
},
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@misaon/quality-gateway": "workspace:*",
"@misaon/quality-gateway-node": "workspace:*",
"@repo/config": "workspace:*",
"@stryker-mutator/core": "catalog:",
"@stryker-mutator/vitest-runner": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"cspell": "catalog:",
"eslint": "catalog:",
"eslint-plugin-oxlint": "catalog:",
"eslint-plugin-pnpm": "catalog:",
"jiti": "catalog:",
"knip": "catalog:",
"lefthook": "catalog:",
"oxfmt": "catalog:",
"oxlint": "catalog:",
"oxlint-tsgolint": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:"
},
"engines": {
"node": "^22.18.0 || >=24.0.0",
"pnpm": ">=11"
},
"packageManager": "pnpm@11.9.0"
}