-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.42 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.42 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "6.11.1",
"@radix-ui/react-alert-dialog": "^1.1.14",
"@radix-ui/react-avatar": "^1.1.10",
"@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-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-toggle": "^1.1.9",
"@tailwindcss/typography": "^0.5.16",
"@tiptap/extension-bold": "^3.0.7",
"@tiptap/extension-code": "^3.0.7",
"@tiptap/extension-code-block-lowlight": "^3.0.7",
"@tiptap/extension-document": "^3.0.7",
"@tiptap/extension-heading": "^3.0.7",
"@tiptap/extension-highlight": "^3.0.7",
"@tiptap/extension-horizontal-rule": "^3.0.7",
"@tiptap/extension-image": "^3.0.7",
"@tiptap/extension-italic": "^3.0.7",
"@tiptap/extension-link": "^3.0.7",
"@tiptap/extension-list": "^3.0.7",
"@tiptap/extension-mention": "^3.0.7",
"@tiptap/extension-paragraph": "^3.0.7",
"@tiptap/extension-strike": "^3.0.7",
"@tiptap/extension-text": "^3.0.7",
"@tiptap/extension-underline": "^3.0.7",
"@tiptap/extensions": "^3.0.7",
"@tiptap/pm": "^3.0.7",
"@tiptap/react": "^3.0.7",
"@tiptap/starter-kit": "^3.0.7",
"@tiptap/suggestion": "^3.0.7",
"axios": "^1.10.0",
"bcryptjs": "^3.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"framer-motion": "^12.23.6",
"highlight.js": "^11.11.1",
"lowlight": "^3.3.0",
"lucide-react": "^0.525.0",
"next": "15.3.5",
"next-auth": "^4.24.11",
"next-themes": "^0.4.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-mentions": "^4.4.10",
"recharts": "^3.1.0",
"sonner": "^2.0.6",
"tailwind-merge": "^3.3.1",
"tippy.js": "^6.3.7",
"vaul": "^1.1.2",
"yjs": "^13.6.27"
},
"devDependencies": {
"@eslint/eslintrc": "latest",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-mentions": "^4.4.1",
"eslint": "^9",
"eslint-config-next": "15.3.5",
"prisma": "6.11.1",
"tailwindcss": "^4",
"tw-animate-css": "^1.3.5",
"typescript": "^5"
}
}