-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 896 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 896 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
40
41
{
"name": "monorepo",
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "biome check --write",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules"
},
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@turbo/gen": "^2.5.8",
"turbo": "^2.5.6"
},
"engines": {
"node": ">=22"
},
"packageManager": "bun@1.3.0",
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"packages/shared/*",
"packages/shared/config/*"
],
"catalog": {
"@types/node": "^22.18.10",
"@types/react": "^19.2.2",
"react": ">=19.1.0",
"react-hook-form": ">=7.65.0",
"tailwindcss": "^4.1.14",
"tsdown": "^0.15.6",
"typescript": "^5.9.3",
"zod": "^4.1.12"
}
},
"overrides": {
"lightningcss": "1.30.1"
}
}