-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.42 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.42 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
56
57
58
{
"name": "cache-components",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "bun run db:setup && next build",
"rebuild": "next build",
"start": "next start",
"lint": "biome check",
"format": "biome format --write",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate",
"db:seed": "bun db/seed.ts",
"db:studio": "drizzle-kit studio",
"db:setup": "bun db/seed.ts"
},
"dependencies": {
"@base-ui/react": "^1.2.0",
"@libsql/client": "^0.17.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"drizzle-orm": "^0.45.1",
"lucide-react": "^0.577.0",
"next": "~16.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"satori": "^0.25.0",
"shadcn": "^3.8.5",
"sharp": "^0.34.5",
"tailwind-merge": "^3.5.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@tailwindcss/postcss": "^4",
"@types/node": "^20.19.37",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"babel-plugin-react-compiler": "1.0.0",
"bun-types": "^1.3.10",
"drizzle-kit": "^0.31.9",
"tailwindcss": "^4",
"typescript": "^5.9.3"
},
"ignoreScripts": [
"sharp",
"unrs-resolver"
],
"trustedDependencies": [
"sharp",
"unrs-resolver"
],
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3"
}
}