-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.13 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.13 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "budgetlog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@auth/drizzle-adapter": "^1.7.0",
"@hookform/resolvers": "^3.9.0",
"@phosphor-icons/react": "^2.1.7",
"@radix-ui/react-accordion": "^1.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-scroll-area": "^1.2.0",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@tanstack/react-query": "^5.59.13",
"@tanstack/react-table": "^8.20.5",
"@trpc/client": "^11.0.0-rc.571",
"@trpc/next": "^11.0.0-rc.571",
"@trpc/react-query": "^11.0.0-rc.571",
"@trpc/server": "^11.0.0-rc.571",
"bun": "^1.1.30",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.33.0",
"javascript-time-ago": "^2.5.11",
"lucide-react": "^0.453.0",
"next": "14.2.8",
"next-auth": "^4.24.8",
"node-pg-migrate": "^7.7.1",
"pg": "^8.13.0",
"postgres": "^3.4.4",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.1",
"react-native-cli": "^2.0.1",
"react-slot-counter": "^3.0.1",
"react-time-ago": "^7.3.3",
"superjson": "^2.2.1",
"swapy": "^1.0.1",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"vite": "^5.4.8",
"yarn": "^1.22.22",
"zod": "^3.23.8",
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/node": "^20.16.11",
"@types/pg": "^8.11.10",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"drizzle-kit": "^0.24.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "14.2.8",
"postcss": "^8.4.47",
"prettier-eslint": "^16.3.0",
"sass": "^1.79.5",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard-scss": "^13.1.0",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3"
}
}