-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.83 KB
/
package.json
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
{
"name": "url-shortener",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"format": "pnpm biome format --write ./src",
"lint": "pnpm biome lint ./src --apply",
"check": "pnpm biome check ./src --apply",
"db:introspect": "drizzle-kit introspect:pg",
"db:push": "drizzle-kit push:pg",
"db:generate": "drizzle-kit generate:pg",
"db:studio": "pnpm drizzle-kit studio --port 4800 --host 127.0.0.1"
},
"dependencies": {
"@hookform/resolvers": "^3.3.3",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-slot": "^1.0.2",
"@reduxjs/toolkit": "^2.0.1",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.0",
"@trpc/next": "^10.45.0",
"@trpc/react-query": "^10.45.0",
"@trpc/server": "^10.45.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"drizzle-orm": "^0.28.6",
"framer-motion": "^10.16.16",
"lucide-react": "^0.294.0",
"nanoid": "^5.0.4",
"next": "^14.0.4",
"next-auth": "4.24.4",
"next-themes": "^0.2.1",
"postgres": "^3.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.49.2",
"react-redux": "^9.0.4",
"server-only": "^0.0.1",
"sonner": "^1.3.1",
"superjson": "^2.2.1",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@types/node": "^18.19.4",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"dotenv": "^16.3.1",
"drizzle-kit": "^0.19.13",
"pg": "^8.11.3",
"postcss": "^8.4.32",
"sass": "^1.69.6",
"tailwindcss": "^3.4.0",
"typescript": "^5.3.3"
}
}