-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.97 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
{
"name": "developer-knowledge-base",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"prisma:reset": "prisma migrate reset",
"prisma:seed": "tsx prisma/seed.ts",
"test": "vitest run"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@prisma/client": "^6.19.3",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@radix-ui/react-tooltip": "^1.2.7",
"@sentry/nextjs": "^10.63.0",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.49.8",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/react-virtual": "^3.14.5",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.38.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"dotenv": "^17.4.2",
"highlight.js": "^11.11.1",
"jszip": "^3.10.1",
"lucide-react": "^0.511.0",
"mermaid": "^11.16.0",
"minisearch": "^7.2.0",
"next": "^15.5.18",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"rehype-highlight": "^7.0.2",
"remark-gfm": "^4.0.1",
"sonner": "^2.0.3",
"tailwind-merge": "^3.3.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.5"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/react": "^19.0.12",
"@types/react-dom": "^19.0.4",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^9.27.0",
"eslint-config-next": "^15.5.18",
"postcss": "^8.5.3",
"prisma": "^6.19.3",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.4",
"typescript": "^5.8.3",
"vitest": "^4.1.9"
}
}