-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 3.05 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "linkboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"db:migrate": "drizzle-kit generate --config='./server/db/drizzle.config.ts' && tsx server/db/migrate.ts"
},
"dependencies": {
"@headlessui/react": "^2.1.0",
"@heroicons/react": "^2.1.4",
"@hookform/resolvers": "^3.6.0",
"@libsql/client": "^0.6.2",
"@lucia-auth/adapter-drizzle": "^1.0.7",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@t3-oss/env-nextjs": "^0.10.1",
"@tailwindcss/typography": "^0.5.13",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/next": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"arctic": "^1.9.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"drizzle-orm": "^0.31.2",
"framer-motion": "^11.2.11",
"geist": "^1.3.0",
"ioredis": "^5.4.1",
"jsdom": "^24.1.0",
"lucia": "^3.2.0",
"lucide-react": "^0.395.0",
"next": "14.2.4",
"next-themes": "^0.3.0",
"oslo": "^1.2.0",
"postgres": "^3.4.4",
"react": "^18",
"react-dom": "^18",
"react-hook-form": "^7.52.0",
"react-wrap-balancer": "^1.1.1",
"sonner": "^1.5.0",
"superjson": "^2.2.1",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.23.8"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.2",
"@types/react": "^18",
"@types/react-dom": "^18",
"drizzle-kit": "^0.22.7",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5"
},
"pnpm": {
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.findlast": "npm:@nolyfill/array.prototype.findlast@latest",
"array.prototype.findlastindex": "npm:@nolyfill/array.prototype.findlastindex@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.toreversed": "npm:@nolyfill/array.prototype.toreversed@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"es-iterator-helpers": "npm:@nolyfill/es-iterator-helpers@latest",
"hasown": "npm:@nolyfill/hasown@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.groupby": "npm:@nolyfill/object.groupby@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest"
}
}
}