-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 947 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 947 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
{
"name": "zenith-minds",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev ",
"build:api": "turbo run build --filter=api",
"build:web": "turbo run build --filter=web",
"dev:api": "turbo run dev --filter=api",
"dev:web": "turbo run dev --filter=web",
"start:api": "turbo run start --filter=api",
"start:web": "turbo run start --filter=web",
"clean": "turbo run clean",
"format": "npx ultracite fix",
"lint": "npx ultracite lint",
"test": "turbo run test",
"biome-check": "biome check --log-level=error --max-diagnostics=300",
"type": "turbo type",
"fix": "biome check --write --unsafe"
},
"devDependencies": {
"@biomejs/biome": "2.2.5",
"@workspace/typescript-config": "workspace:*",
"turbo": "^2.5.4",
"typescript": "5.9.2",
"ultracite": "5.6.2"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.14.4"
}