-
Notifications
You must be signed in to change notification settings - Fork 74
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 955 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 955 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": "cutia",
"packageManager": "bun@1.2.18",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "turbo run dev --filter=@cutia/web",
"build:web": "turbo run build --filter=@cutia/web",
"dev:tools": "turbo run dev --filter=@cutia/tools",
"build:tools": "turbo run build --filter=@cutia/tools",
"start:tools": "turbo run start --filter=@cutia/tools",
"lint:web": "biome lint apps/web/src --max-diagnostics=1000",
"lint:web:fix": "biome lint apps/web/src --write --max-diagnostics=1000",
"format:web": "biome format apps/web/src/services/renderer --write --max-diagnostics=1000",
"test": "bun test"
},
"dependencies": {
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"better-auth": "^1.4.15",
"next": "^16.1.3"
},
"devDependencies": {
"turbo": "^2.7.5",
"typescript": "5.8.3"
},
"trustedDependencies": [
"@tailwindcss/oxide"
]
}