-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.33 KB
/
package.json
File metadata and controls
55 lines (55 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "arcle",
"version": "0.0.1",
"devDependencies": {
"@arcle/typescript-config": "workspace:*",
"@biomejs/biome": "2.3.10",
"turbo": "^2.7.2",
"typescript": "catalog:"
},
"packageManager": "bun@1.3.5",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"typecheck": "turbo typecheck",
"format-and-lint": "biome check .",
"format-and-lint:fix": "biome check . --write"
},
"workspaces": {
"packages": [
"apps/*",
"packages/*",
"services/*"
],
"catalog": {
"react": "^19.2.3",
"react-dom": "^19.2.3",
"typescript": "^5.9.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/node": "^25.0.3",
"@types/bun": "^1.3.5",
"@tailwindcss/postcss": "^4.1.18",
"tailwindcss": "^4.1.18",
"next-themes": "^0.4.6",
"@phosphor-icons/react": "^2.1.10",
"zod": "^4.2.1",
"better-auth": "^1.4.10"
},
"catalogs": {
"backend": {
"hono": "^4.11.3",
"@hono/zod-validator": "^0.5.0",
"drizzle-orm": "^0.45.1",
"drizzle-kit": "^0.31.8",
"zod": "^4.2.1",
"@paralleldrive/cuid2": "^3.0.6",
"superjson": "^2.2.2",
"ioredis": "^5.6.1",
"ms": "^2.1.3",
"@types/ms": "^2.1.0"
}
}
}
}