-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.82 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
{
"name": "itsuki.cn",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen-types": "npx supabase gen types typescript --project-id skfztuyhbelqtomwriol --schema public > types_db.ts",
"format": "prettier --write . '**/*.{ts,js,tsx,md,scss,json}'",
"supabase:link": "node supabase/link.js",
"supabase:generate-types": "npx supabase gen types typescript --local --schema public > types_db.ts",
"supabase:generate-migration": "npx supabase db diff | npx supabase migration new update",
"supabase:migrate": "npx supabase migration up --linked"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.1.1",
"@radix-ui/react-popover": "^1.1.2",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
"@react-email/body": "^0.0.7",
"@react-email/button": "^0.0.13",
"@react-email/column": "^0.0.9",
"@react-email/container": "^0.0.11",
"@react-email/head": "^0.0.7",
"@react-email/heading": "^0.0.11",
"@react-email/hr": "^0.0.7",
"@react-email/html": "^0.0.7",
"@react-email/img": "^0.0.7",
"@react-email/link": "^0.0.7",
"@react-email/preview": "^0.0.8",
"@react-email/row": "^0.0.7",
"@react-email/section": "^0.0.11",
"@react-email/tailwind": "^0.0.14",
"@react-email/text": "^0.0.7",
"@supabase/ssr": "^0.0.10",
"@supabase/supabase-js": "^2.46.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@upstash/ratelimit": "^1.2.1",
"@upstash/redis": "^1.34.3",
"@vercel/analytics": "^1.3.2",
"@vercel/edge-config": "^0.4.1",
"@vercel/speed-insights": "^1.0.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"feed": "^4.2.2",
"framer-motion": "^10.18.0",
"lodash.debounce": "^4.0.8",
"lodash.uniqby": "^4.7.0",
"lucide-react": "^0.306.0",
"next": "^15.0.2",
"next-mdx-remote": "^5.0.0",
"next-themes": "^0.2.1",
"prism-react-renderer": "^2.4.0",
"prism-theme-vars": "^0.2.5",
"query-string": "^8.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.0.1",
"resend": "^3.5.0",
"rich-textarea": "^0.24.4",
"sonner": "^1.5.0",
"swr": "^2.2.5",
"tailwind-merge": "^2.5.4",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^2.16.0"
},
"devDependencies": {
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.uniqby": "^4.7.9",
"@types/node": "^20.17.5",
"@types/prismjs": "^1.26.5",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "14.0.4",
"postcss": "^8.4.47",
"sass": "^1.80.6",
"schema-dts": "^1.1.2",
"tailwindcss": "^3.4.14",
"type-fest": "^4.26.1",
"typescript": "^5.6.3"
}
}