-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.25 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
{
"name": "next-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "contentlayer build",
"dev": "concurrently \"contentlayer dev\" \"next dev\"",
"build": "contentlayer && next build",
"start": "next start",
"lint": "next lint",
"db:generate": "drizzle-kit generate:pg",
"db:migration:drop": "drizzle-kit drop",
"db:push": "drizzle-kit push:pg",
"db:start-local": "pg_ctl -D ./postgres/db start",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@auth/core": "^0.16.1",
"@auth/drizzle-adapter": "^0.3.2",
"@headlessui/react": "^1.7.17",
"@headlessui/tailwindcss": "^0.2.0",
"@heroicons/react": "^2.0.18",
"@hookform/resolvers": "^3.3.1",
"@radix-ui/colors": "^3.0.0-rc.4",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-menubar": "^1.0.3",
"@radix-ui/react-navigation-menu": "^1.1.3",
"@radix-ui/react-popover": "^1.0.6",
"@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4",
"@radix-ui/react-toggle": "^1.0.3",
"@radix-ui/react-toggle-group": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.6",
"@react-email/components": "^0.0.7",
"@tailwindcss/forms": "^0.5.6",
"@types/node": "20.6.1",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@vercel/analytics": "^1.1.1",
"ai": "^2.2.15",
"autoprefixer": "10.4.15",
"chalk": "^5.3.0",
"class-variance-authority": "^0.7.0",
"classnames": "^2.3.2",
"clsx": "^2.0.0",
"concurrently": "^8.2.1",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"drizzle-kit": "^0.19.13",
"drizzle-orm": "^0.28.6",
"drizzle-zod": "^0.5.1",
"encoding": "^0.1.13",
"esbuild": "^0.19.3",
"eslint": "^8.49.0",
"eslint-config-next": "13.4.19",
"framer-motion": "^10.16.4",
"github-slugger": "^2.0.0",
"js-tiktoken": "^1.0.7",
"ksuid": "^3.0.0",
"lucide-react": "^0.287.0",
"nanoid": "^5.0.1",
"next": "latest",
"next-auth": "^4.23.1",
"next-contentlayer": "^0.3.4",
"next-themes": "^0.2.1",
"openai": "^4.12.1",
"pg": "^8.11.3",
"postcss": "^8.4.31",
"postgres": "^3.3.5",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"prism-react-renderer": "1.3.5",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-email": "^1.9.4",
"react-hook-form": "^7.46.1",
"react-hotkeys-hook": "^4.4.1",
"react-wrap-balancer": "^1.1.0",
"rehype": "^13.0.1",
"rehype-autolink-headings": "^7.0.0",
"rehype-pretty-code": "^0.10.1",
"rehype-slug": "^6.0.0",
"remark": "^14.0.3",
"remark-frontmatter": "^4.0.1",
"remark-gfm": "^3.0.1",
"remark-mdx": "^2.3.0",
"resend": "^1.0.0",
"sharp": "^0.32.5",
"shiki": "^0.14.4",
"tailwind-merge": "^1.14.0",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.2.2",
"zod": "^3.22.2"
},
"devDependencies": {
"bun-types": "^1.0.7"
}
}