forked from arikchakma/maily.to
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.92 KB
/
package.json
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
{
"name": "mailbox",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format:write": "prettier --write \"**/*.{css,js,json,jsx,ts,tsx}\" --cache",
"format": "prettier \"**/*.{css,js,json,jsx,ts,tsx}\" --cache"
},
"dependencies": {
"@hookform/resolvers": "^3.2.0",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.4",
"@supabase/auth-helpers-nextjs": "^0.7.4",
"@supabase/supabase-js": "^2.32.0",
"@tanstack/react-query": "^4.33.0",
"@tiptap/core": "^2.1.6",
"@tiptap/extension-bold": "^2.1.6",
"@tiptap/extension-bullet-list": "^2.1.6",
"@tiptap/extension-color": "^2.1.6",
"@tiptap/extension-document": "^2.1.6",
"@tiptap/extension-dropcursor": "^2.1.6",
"@tiptap/extension-gapcursor": "^2.1.6",
"@tiptap/extension-hard-break": "^2.1.6",
"@tiptap/extension-heading": "^2.1.6",
"@tiptap/extension-history": "^2.1.6",
"@tiptap/extension-horizontal-rule": "^2.1.6",
"@tiptap/extension-image": "^2.1.6",
"@tiptap/extension-italic": "^2.1.6",
"@tiptap/extension-link": "^2.1.6",
"@tiptap/extension-list-item": "^2.1.6",
"@tiptap/extension-mention": "^2.1.6",
"@tiptap/extension-ordered-list": "^2.1.6",
"@tiptap/extension-paragraph": "^2.1.6",
"@tiptap/extension-placeholder": "^2.1.6",
"@tiptap/extension-strike": "^2.1.6",
"@tiptap/extension-text": "^2.1.6",
"@tiptap/extension-text-align": "^2.1.6",
"@tiptap/extension-text-style": "^2.1.6",
"@tiptap/extension-underline": "^2.1.6",
"@tiptap/pm": "^2.1.6",
"@tiptap/react": "^2.1.6",
"@tiptap/suggestion": "^2.1.6",
"@types/node": "20.4.0",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"@vercel/analytics": "^1.0.2",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.6.1",
"clsx": "^1.2.1",
"cmdk": "^0.2.0",
"copy-to-clipboard": "^3.3.3",
"eslint": "8.44.0",
"eslint-config-next": "13.4.8",
"jotai": "^2.3.1",
"lucide-react": "^0.258.0",
"next": "13.4.19",
"nextjs-toploader": "^1.4.2",
"postcss": "8.4.24",
"react": "18.2.0",
"react-color": "^2.19.3",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.4",
"react-wrap-balancer": "^1.1.0",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.2",
"tailwindcss-animate": "^1.0.6",
"tippy.js": "^6.3.7",
"typescript": "5.1.6",
"zod": "^3.22.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@tailwindcss/typography": "^0.5.9",
"@types/react-color": "^3.0.6",
"encoding": "^0.1.13",
"prettier": "^3.0.2",
"prettier-plugin-tailwindcss": "^0.4.1",
"supabase": "^1.86.2"
}
}