-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.99 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.99 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
{
"private": true,
"type": "module",
"scripts": {
"sitemap": "next-sitemap --config next-sitemap.config.cjs",
"generate": "npx tsx scripts/generate-tag-json.ts",
"postbuild": "npm run sitemap",
"build": "next build",
"dev": "next dev",
"lint": "next lint",
"prettier": "prettier --write --ignore-unknown .",
"prettier:check": "prettier --check --ignore-unknown .",
"start": "next start"
},
"dependencies": {
"@heroicons/react": "^2.0.18",
"@next/mdx": "^14.2.3",
"@radix-ui/react-slot": "^1.1.0",
"@supabase/supabase-js": "^2.43.5",
"@tailwindcss/forms": "^0.5.7",
"axios": "^1.7.7",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"lucide-react": "^0.416.0",
"next": "^14.0.2",
"next-auth": "^5.0.0-beta.17",
"next-mdx-remote": "^5.0.0",
"next-sitemap": "^4.2.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-ga4": "^2.1.0",
"react-syntax-highlighter": "^15.5.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.34.1",
"tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.0",
"zod": "^3.22.2",
"zustand": "^4.5.4"
},
"devDependencies": {
"@types/node": "20.5.7",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.14",
"@types/react-syntax-highlighter": "^15.5.13",
"@vercel/style-guide": "^5.0.1",
"autoprefixer": "^10.4.19",
"dotenv": "^16.3.1",
"eslint": "^8.52.0",
"eslint-config-next": "^14.0.0",
"eslint-config-prettier": "9.0.0",
"gray-matter": "^4.0.3",
"mermaid": "^10.9.1",
"postcss": "^8.4.39",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "0.5.4",
"tailwindcss": "^3.4.6",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18.17.0"
},
"images": {
"formats": [
"image/avif",
"image/webp"
],
"deviceSizes": [
640,
750,
828,
1080,
1200,
1920,
2048,
3840
]
}
}