-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.74 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.74 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
{
"name": "mini-course",
"version": "0.1.0",
"private": true,
"scripts": {
"postinstall": "prisma generate",
"dev": "next dev",
"build": "prisma migrate deploy && next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage"
},
"dependencies": {
"@clerk/nextjs": "^6.35.0",
"@hello-pangea/dnd": "^18.0.1",
"@hookform/resolvers": "^5.2.2",
"@prisma/client": "^6.18.0",
"@prisma/extension-accelerate": "^2.0.2",
"@types/ws": "^8.18.1",
"@uiw/react-md-editor": "^4.0.8",
"dotenv": "^17.2.3",
"groq-sdk": "^0.37.0",
"highlight.js": "^11.11.1",
"lucide-react": "^0.548.0",
"next": "16.0.8",
"next-themes": "^0.4.6",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.65.0",
"react-markdown": "^10.1.0",
"recharts": "^3.6.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.7",
"svix": "^1.84.1",
"ws": "^8.18.3",
"zod": "^4.1.12",
"zustand": "^5.0.9"
},
"devDependencies": {
"@neondatabase/serverless": "^1.0.2",
"@prisma/adapter-neon": "^6.18.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "4.0.14",
"daisyui": "^5.3.10",
"eslint": "^9",
"eslint-config-next": "16.0.0",
"jsdom": "^27.2.0",
"prisma": "^6.18.0",
"tailwindcss": "^4",
"tsx": "^4.20.6",
"typescript": "^5",
"vitest": "^4.0.14"
}
}