forked from malharlakdawala/taskflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.13 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
{
"name": "todo-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"seed": "node --import tsx --env-file-if-exists=.env.local scripts/seed.ts",
"postinstall": "prisma generate"
},
"dependencies": {
"@base-ui/react": "^1.6.0",
"@hello-pangea/dnd": "^18.0.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@prisma/adapter-pg": "^7.9.0",
"@prisma/client": "^7.9.0",
"@supabase/ssr": "^0.12.3",
"@supabase/supabase-js": "^2.110.8",
"@tailwindcss/typography": "^0.5.20",
"@tiptap/extension-code-block-lowlight": "^3.29.0",
"@tiptap/extension-highlight": "^3.29.0",
"@tiptap/extension-image": "^3.29.0",
"@tiptap/extension-link": "^3.29.0",
"@tiptap/extension-mention": "^3.29.0",
"@tiptap/extension-placeholder": "^3.29.0",
"@tiptap/extension-table": "^3.29.0",
"@tiptap/extension-table-cell": "^3.29.0",
"@tiptap/extension-table-header": "^3.29.0",
"@tiptap/extension-table-row": "^3.29.0",
"@tiptap/extension-task-item": "^3.29.0",
"@tiptap/extension-task-list": "^3.29.0",
"@tiptap/extension-text-align": "^3.29.0",
"@tiptap/extension-underline": "^3.29.0",
"@tiptap/pm": "^3.29.0",
"@tiptap/react": "^3.29.0",
"@tiptap/starter-kit": "^3.29.0",
"@tiptap/suggestion": "^3.29.0",
"@types/sanitize-html": "^2.16.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.4.0",
"lucide-react": "^1.26.0",
"next": "16.2.11",
"next-themes": "^0.4.6",
"pg": "^8.22.0",
"prisma": "^7.9.0",
"react": "19.2.4",
"react-day-picker": "^10.0.1",
"react-dom": "19.2.4",
"sanitize-html": "^2.17.6",
"shadcn": "^4.14.1",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.11",
"tailwindcss": "^4",
"tsx": "^4.23.1",
"typescript": "^5"
}
}