-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
107 lines (107 loc) · 3.34 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "next-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"preview": "next build && next start",
"start": "next start",
"lint": "next lint",
"postinstall": "prisma generate",
"db:setup": "node scripts/seed.ts",
"typecheck": "tsc --noEmit",
"format:write": "prettier --write \"**/*.{ts,tsx,mdx}\" --cache",
"format:check": "prettier --check \"**/*.{ts,tsx,mdx}\" --cache"
},
"dependencies": {
"@auth/prisma-adapter": "^2.0.0",
"@codesandbox/sandpack-react": "^2.9.0",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.1",
"@prisma/client": "5.15.1",
"@radix-ui/react-alert-dialog": "^1.0.4",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "1.0.4",
"@radix-ui/react-dropdown-menu": "^2.0.5",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-scroll-area": "^1.0.5",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@t3-oss/env-nextjs": "^0.10.0",
"@tailwindcss/typography": "^0.5.9",
"@tanstack/react-query": "^5.39.0",
"@tiptap/extension-bold": "^2.4.0",
"@tiptap/extension-document": "^2.4.0",
"@tiptap/extension-italic": "^2.4.0",
"@tiptap/extension-paragraph": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-strike": "^2.4.0",
"@tiptap/extension-text": "^2.4.0",
"@tiptap/react": "^2.4.0",
"@trpc/client": "next",
"@trpc/react-query": "next",
"@trpc/server": "next",
"@umami/api-client": "^0.68.0",
"@vercel/og": "^0.6.0",
"autoprefixer": "10.4.19",
"axios": "^1.5.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"cmdk": "^1.0.0",
"contentlayer": "^0.3.2",
"date-fns": "^3.0.0",
"framer-motion": "^11.0.0",
"jiti": "^1.21.3",
"lucide-react": "^0.390.0",
"next": "14.2.4",
"next-auth": "5.0.0-beta.19",
"next-contentlayer": "^0.3.2",
"next-themes": "^0.3.0",
"postcss": "8.4.38",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-github-calendar": "^4.1.2",
"react-hook-form": "^7.46.1",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.8.0",
"react-markdown": "^9.0.1",
"react-medium-image-zoom": "^5.2.4",
"react-use": "^17.4.0",
"recharts": "^2.12.2",
"rehype-autolink-headings": "^7.0.0",
"rehype-pretty-code": "^0.13.1",
"rehype-slug": "^6.0.0",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"server-only": "^0.0.1",
"shiki": "^1.3.0",
"simple-icons": "^12.0.0",
"sonner": "^1.4.3",
"superjson": "^2.2.1",
"swr": "^2.2.4",
"tailwind-merge": "^2.0.0",
"tailwindcss": "^3.4.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.4.5",
"unist-util-visit": "^5.0.0",
"vaul": "^0.9.1",
"zod": "^3.21.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.1.0",
"@types/node": "20.14.9",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"mdast-util-toc": "^7.0.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.6.0",
"prisma": "^5.15.0"
}
}