-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.51 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.51 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "portfolio-nextjs-fullstack-app",
"description": "A fullstack portfolio app built with Next.js, Prisma, and Shadcn UI.",
"author": "Halim Putra",
"license": "MIT",
"keywords": [
"portfolio",
"nextjs",
"prisma",
"shadcn-ui",
"fullstack"
],
"repository": {
"type": "git",
"url": "https://github.com/bforbilly24/bforbilly"
},
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "node server.js",
"build": "npm run db:generate && next build",
"start": "NODE_ENV=production node server.js",
"lint": "next lint",
"content:build": "contentlayer build",
"content:dev": "contentlayer dev",
"db:generate": "prisma generate",
"postinstall": "prisma generate"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@clerk/nextjs": "^6.23.3",
"@clerk/themes": "^2.2.54",
"@clerk/types": "^4.63.0",
"@emotion/is-prop-valid": "^1.3.1",
"@prisma/client": "^5.7.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-scroll-area": "^1.2.9",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-three/drei": "^9.105.4",
"@react-three/fiber": "^8.16.1",
"@react-three/rapier": "^1.3.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.50.5",
"@types/lodash": "^4.17.20",
"@vercel/og": "^0.5.20",
"@vercel/speed-insights": "^1.0.2",
"autoprefixer": "10.4.16",
"caniuse-lite": "^1.0.30001727",
"class-variance-authority": "^0.7.0",
"cloudinary": "^2.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.1.1",
"contentlayer": "^0.3.4",
"date-fns": "^4.1.0",
"dotenv": "^17.2.0",
"framer-motion": "11",
"geist": "^1.2.0",
"hamburger-react": "^2.5.2",
"lodash": "^4.17.21",
"lucide-react": "^0.525.0",
"meshline": "^3.1.6",
"motion": "^12.23.0",
"next": "^14.2.15",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.4.6",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "^4.12.0",
"recharts": "^3.0.2",
"rehype-autolink-headings": "^7.1.0",
"rehype-pretty-code": "^0.14.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "4",
"sharp": "^0.32.6",
"shiki": "^3.7.0",
"socket.io": "^4.8.1",
"socket.io-client": "^4.8.1",
"three": "^0.160.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "^24.0.10",
"@types/react": "18.2.37",
"@types/react-dom": "18.2.15",
"@types/three": "^0.160.0",
"knip": "^5.61.3",
"prettier-plugin-tailwindcss": "^0.6.14",
"prisma": "^5.7.1",
"tailwind-merge": "^2.2.0",
"tailwindcss": "3.4.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"resolutions": {
"three-mesh-bvh": "^0.8.0"
}
}