-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.31 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
{
"name": "shelf",
"version": "1.0.0-rc.1",
"private": true,
"scripts": {
"build": "turbo build",
"db:migrate": "bun --filter @shelf/db db:migrate",
"dev": "turbo dev",
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"test": "turbo test",
"typecheck": "turbo typecheck",
"doctor": "npx react-doctor@latest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.955.0",
"@aws-sdk/s3-request-presigner": "^3.955.0",
"@better-auth/redis-storage": "^1.0.0",
"@heroicons/react": "^2.2.0",
"@hookform/resolvers": "^5.2.2",
"@tanstack/react-query": "^5.90.12",
"better-auth": "^1.4.5",
"bullmq": "^5.66.0",
"drizzle-orm": "^0.45.1",
"hono": "^4.11.3",
"ioredis": "^5.8.2",
"pg": "^8.16.3",
"react-hook-form": "^7.68.0",
"sharp": "^0.35.1",
"sonner": "^2.0.7",
"ulid": "^3.0.1",
"zustand": "^5.0.9"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/bun": "^1.3.14",
"@types/node": "^25.9.3",
"@types/pg": "^8.16.0",
"drizzle-kit": "^0.31.8",
"turbo": "^2.9.15",
"typescript": "~6"
},
"packageManager": "bun@1.3.13",
"engines": {
"node": ">=20"
},
"workspaces": [
"apps/*",
"packages/*"
]
}