-
-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 829 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 829 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
{
"name": "ui",
"private": true,
"scripts": {
"dev": "turbo run dev",
"dev:up": "turbo run dev test:watch",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"check": "biome check .",
"check:fix": "biome check --fix .",
"vercel:install": "turbo run vercel:install",
"build": "turbo run build",
"registry:build": "turbo run registry:build",
"start": "turbo run start",
"prepare": "husky"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"turbo": "^2.4.4",
"typescript": "5.8.2"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.2.4",
"workspaces": ["apps/*", "packages/*"],
"trustedDependencies": ["@biomejs/biome", "@repo/web", "@swc/core"]
}