-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.52 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.52 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
{
"name": "gitivity",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "npx prisma generate",
"build": "next build --turbopack",
"postbuild": "npx prisma generate",
"start": "next start",
"lint": "eslint",
"db:generate": "npx prisma generate",
"db:reset": "if exist app\\generated\\prisma rmdir /s /q app\\generated\\prisma && npx prisma generate"
},
"dependencies": {
"@hugocxl/react-to-image": "^0.0.9",
"@prisma/client": "^6.16.2",
"@prisma/extension-accelerate": "^2.0.2",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-hover-card": "^1.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@vercel/og": "^0.8.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dom-to-image": "^2.6.0",
"html2canvas": "^1.4.1",
"lucide-react": "^0.542.0",
"motion": "^12.23.12",
"next": "15.5.9",
"next-auth": "^5.0.0-beta.29",
"next-themes": "^0.4.6",
"qss": "^3.0.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-icons": "^5.5.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.3.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@iconify/react": "^6.0.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.2",
"prisma": "^6.16.2",
"tailwindcss": "^4",
"tsx": "^4.20.5",
"tw-animate-css": "^1.3.8",
"typescript": "^5"
}
}