-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
88
89
90
{
"name": "next-app-template",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate && prisma migrate deploy"
},
"dependencies": {
"@clerk/nextjs": "^6.9.2",
"@nextui-org/autocomplete": "^2.3.7",
"@nextui-org/avatar": "^2.2.4",
"@nextui-org/breadcrumbs": "^2.2.4",
"@nextui-org/button": "^2.2.7",
"@nextui-org/card": "^2.2.7",
"@nextui-org/divider": "^2.2.4",
"@nextui-org/dropdown": "^2.3.7",
"@nextui-org/image": "^2.2.3",
"@nextui-org/input": "^2.4.6",
"@nextui-org/link": "^2.2.5",
"@nextui-org/modal": "^2.2.5",
"@nextui-org/navbar": "^2.2.5",
"@nextui-org/popover": "^2.3.7",
"@nextui-org/select": "^2.4.7",
"@nextui-org/skeleton": "^2.2.3",
"@nextui-org/spinner": "^2.2.4",
"@nextui-org/switch": "^2.2.6",
"@nextui-org/system": "2.4.0",
"@nextui-org/tabs": "^2.2.5",
"@nextui-org/theme": "2.4.3",
"@nextui-org/tooltip": "^2.2.5",
"@nextui-org/user": "^2.2.4",
"@prisma/client": "^6.0.1",
"@react-aria/ssr": "^3.9.2",
"@react-aria/visually-hidden": "^3.8.10",
"@tanstack/react-query": "^5.62.7",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"@vercel/analytics": "^1.3.1",
"@vercel/postgres": "^0.9.0",
"@vercel/speed-insights": "^1.0.11",
"autoprefixer": "10.4.19",
"clipboard-copy": "^4.0.1",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.5.6",
"intl-messageformat": "^10.5.0",
"lodash": "^4.17.21",
"lucide-react": "^0.468.0",
"next": "^15.1.2",
"next-themes": "^0.2.1",
"node-vibrant": "^3.2.1-alpha.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-intersection-observer": "^9.10.2",
"server-only": "^0.0.1",
"sharp": "^0.33.4",
"slug": "^9.1.0",
"sonner": "^1.7.1",
"svix": "^1.24.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.35.6",
"@types/eslint": "~8.56.10",
"@types/eslint-config-prettier": "~6.11.3",
"@types/lodash": "^4.17.4",
"@types/node": "^20",
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2",
"@types/slug": "^5.0.8",
"eslint": "^8",
"eslint-config-next": "15.1.0",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.3",
"prisma": "^6.0.1",
"tailwind-variants": "^0.1.20",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5"
},
"overrides": {
"@types/react": "19.0.1",
"@types/react-dom": "19.0.2"
}
}