-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 827 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 827 Bytes
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
{
"name": "ui-annotator",
"private": true,
"type": "module",
"workspaces": {
"packages": [
"apps/*",
"packages/*"
],
"catalog": {
"typescript": "^5"
}
},
"scripts": {
"check": "biome check --write .",
"dev": "turbo dev",
"build": "turbo build",
"check-types": "turbo check-types",
"knip": "knip",
"knip:fix": "knip --fix",
"dev:native": "turbo -F native dev",
"dev:web": "turbo -F web dev",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"husky": "^9.1.7",
"knip": "^5.76.3",
"turbo": "^2.6.3",
"typescript": "catalog:",
"ultracite": "6.5.0"
},
"packageManager": "bun@1.3.5",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"bun x ultracite fix"
]
}
}