-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.8 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.8 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
51
52
53
54
{
"name": "monorepo",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"ts:lint": "oxfmt --check . && oxlint --type-aware --allow tsconfig-error",
"ts:fix": "ultracite fix --type-aware",
"ts:fix:unsafe": "ultracite fix --type-aware --unsafe",
"ts:types": "turbo run type-check",
"ts:test": "turbo run test",
"ts:test:coverage": "turbo run test:coverage",
"ts:knip": "knip --cache --no-config-hints",
"fmt:fix": "oxfmt --write .",
"fmt:check": "oxfmt --check .",
"py:check": "uv run ruff check apps/bridge/src apps/bridge/tests && uv run ruff format --check apps/bridge/src apps/bridge/tests",
"py:fix": "uv run ruff check --fix apps/bridge/src apps/bridge/tests && uv run ruff format apps/bridge/src apps/bridge/tests",
"py:test": "uv run pytest apps/bridge/tests -v --tb=short",
"lint:repo": "sherif",
"lint": "pnpm ts:lint && pnpm py:check",
"fix": "pnpm ts:fix && pnpm fmt:fix && pnpm py:fix",
"test": "pnpm ts:test && pnpm py:test",
"clean": "turbo run clean --continue || true",
"ruler:apply": "ruler apply",
"ruler:revert": "ruler revert",
"ruler:dry-run": "ruler apply --dry-run --verbose"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"@intellectronica/ruler": "^0.3.38",
"knip": "^6.0.6",
"lefthook": "^2.1.5",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"oxlint-tsgolint": "^0.17.2",
"sherif": "^1.11.1",
"turbo": "^2.8.20",
"typescript": "catalog:",
"ultracite": "7.4.3"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.28.2",
"pnpm": {
"overrides": {
"zod": "4.3.6"
}
}
}