-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "buck",
"private": true,
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"zod": "^4.3.6",
"typescript": "^5.9.3"
}
},
"type": "module",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:ci": "turbo run test:ci",
"check-types": "turbo run check-types",
"check": "turbo run format lint && bun run audit",
"check:fix": "turbo run lint:fix format:fix",
"lint": "turbo run lint",
"lint:ci": "turbo run lint -- --format=github",
"lint:fix": "turbo run lint:fix",
"format": "turbo run format",
"format:fix": "turbo run format:fix",
"audit": "bun audit"
},
"dependencies": {
"@buck/env": "workspace:*",
"zod": "catalog:"
},
"devDependencies": {
"@buck/config": "workspace:*",
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/types": "^20.5.0",
"lefthook": "^2.1.4",
"oxfmt": "^0.42.0",
"oxlint": "^1.58.0",
"turbo": "^2.9.3",
"typescript": "catalog:"
},
"packageManager": "bun@1.3.5"
}