-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 3.06 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
91
92
93
94
95
96
97
98
99
{
"name": "portfolio-scratch",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test-build": "npm run typecheck && npm run lint && npm run build",
"prepare": "husky install"
},
"dependencies": {
"@prisma/client": "^6.0.1",
"@radix-ui/react-alert-dialog": "^1.1.2",
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.2.1",
"@radix-ui/react-select": "^2.1.2",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.1",
"@radix-ui/react-toast": "^1.2.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@react-three/drei": "^9.118.0",
"@react-three/fiber": "^8.17.10",
"@tanstack/react-query": "^5.62.2",
"@tiptap/extension-bullet-list": "^2.10.3",
"@tiptap/extension-code-block": "^2.10.3",
"@tiptap/extension-document": "^2.10.3",
"@tiptap/extension-heading": "^2.10.3",
"@tiptap/extension-list-item": "^2.10.3",
"@tiptap/extension-ordered-list": "^2.10.3",
"@tiptap/extension-paragraph": "^2.10.3",
"@tiptap/extension-text": "^2.10.3",
"@tiptap/react": "^2.10.3",
"@tiptap/starter-kit": "^2.10.3",
"@types/bcryptjs": "^2.4.6",
"@types/react-syntax-highlighter": "^15.5.13",
"ai": "^4.0.9",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.0.4",
"date-fns": "^4.1.0",
"framer-motion": "^11.12.0",
"lucide-react": "^0.462.0",
"next": "14.0.4",
"next-auth": "^4.24.10",
"next-sitemap": "^4.2.3",
"next-themes": "^0.4.3",
"openai": "^4.75.0",
"prism-react-renderer": "^2.4.0",
"prisma": "^6.0.1",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-confetti": "^6.1.0",
"react-day-picker": "^9.4.1",
"react-dom": "^18",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.3.0",
"react-intersection-observer": "^9.13.1",
"react-markdown": "^9.0.1",
"react-syntax-highlighter": "^15.6.1",
"recharts": "^2.15.0",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"shadcn": "^2.1.6",
"sonner": "^1.7.0",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"three": "^0.171.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@shadcn/ui": "^0.0.4",
"@types/node": "^20",
"@types/react": "18.3.12",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"husky": "^8.0.3",
"postcss": "^8",
"shadcn-ui": "^0.9.3",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"typescript": "5.7.2"
}
}