-
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.43 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) 路 1.43 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": "allocado",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "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 run src/db/seed.ts",
"db:seed:local": "bun run src/db/seed.local.ts",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@clerk/nextjs": "^6.39.6",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@neondatabase/serverless": "^0.10.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cn": "^0.3.0",
"drizzle-orm": "^0.45.2",
"lucide-react": "^1.30.0",
"next": "^16.3.0",
"next-themes": "^0.4.6",
"plaid": "^45.0.0",
"radix-ui": "^1.6.7",
"react": "19.2.8",
"react-dom": "19.2.8",
"react-plaid-link": "^5.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"ws": "^8.21.3"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@tailwindcss/postcss": "^4.3.3",
"@types/node": "^20.19.43",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@types/ws": "^8.18.1",
"drizzle-kit": "^0.31.10",
"shadcn": "^4.16.2",
"tailwindcss": "^4.3.3",
"typescript": "^5.9.3"
},
"overrides": {
"postcss": "^8.5.26",
"js-yaml": "^4.3.1"
}
}