-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 3 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 3 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
{
"name": "vivvers-nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"db:generate": "prisma generate",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"db:migrate": "prisma migrate dev",
"db:migrate:deploy": "prisma migrate deploy",
"db:migrate:reset": "prisma migrate reset",
"db:seed": "prisma db seed",
"db:reset": "prisma db reset",
"db:validate": "prisma validate",
"db:format": "prisma format",
"postinstall": "prisma migrate deploy"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@floating-ui/react": "^0.27.13",
"@next/third-parties": "^15.4.1",
"@prisma/client": "^5.20.0",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.11",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.14",
"@radix-ui/react-progress": "^1.1.7",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slider": "^1.3.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tabs": "^1.1.12",
"@supabase/ssr": "^0.6.1",
"@supabase/supabase-js": "^2.51.0",
"@tailwindcss/typography": "^0.5.16",
"@tiptap/extension-code-block-lowlight": "^3.0.1",
"@tiptap/extension-file-handler": "^3.0.2",
"@tiptap/extension-image": "^3.0.2",
"@tiptap/react": "^3.0.1",
"@tiptap/starter-kit": "^3.0.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.2.6",
"embla-carousel-react": "^8.6.0",
"framer-motion": "^12.23.6",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.525.0",
"next": "15.4.10",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-day-picker": "^9.8.0",
"react-dom": "19.1.0",
"react-easy-crop": "^5.5.0",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"yet-another-react-lightbox": "^3.24.0",
"zod": "^4.0.5"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"autoprefixer": "^10.4.21",
"eslint": "^9",
"eslint-config-next": "15.4.1",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"postcss": "^8.5.6",
"prisma": "^5.20.0",
"sass": "^1.89.2",
"tailwindcss": "^3.4.17",
"tsx": "^4.19.2",
"typescript": "^5",
"uuidv7": "^1.0.2"
},
"prisma": {
"seed": "tsx prisma/seed.ts"
}
}