-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.33 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.33 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
{
"private": true,
"name": "voice-ai-tool",
"packageManager": "bun@1.2.20",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"clean": "find . \\( -type d \\( -name 'node_modules' -o -name '.turbo' -o -name 'dist' -o -name 'build' \\) -prune -exec rm -rf '{}' \\; -o -type f \\( -name 'bun.lock' -o -name '*.tsbuildinfo' \\) -exec rm -f '{}' \\; \\)",
"format": "biome format --write",
"lint": "biome lint --write",
"check": "biome check --write",
"check-types": "turbo run check-types",
"fun": "turbo run check check-types",
"build": "turbo run build",
"start": "turbo run start",
"dev": "turbo run dev",
"start:api": "turbo run start --filter=@cw/api",
"start:web": "turbo run start --filter=@cw/web",
"dev:web": "turbo run dev --filter=@cw/web",
"dev:api": "turbo run dev --filter=@cw/api",
"build:web": "turbo run build --filter=@cw/web",
"db:studio": "turbo run db:studio --filter=@cw/api",
"db:push": "turbo run db:push --filter=@cw/api",
"db:generate": "turbo run db:generate --filter=@cw/api",
"db:migrate": "turbo run db:migrate --filter=@cw/api",
"db:seed": "turbo run db:seed --filter=@cw/api",
"setup": "bun scripts/setup.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"turbo": "^2.5.6"
},
"trustedDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild"
]
}