-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:cold": "rm -fr ./.contentlayer && next dev -p 3006",
"dev": "next dev -p 3006",
"build": "next build",
"start": "next start",
"lint": "next lint",
"export": "next export"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} prisma/seed.ts"
},
"dependencies": {
"@mdx-js/loader": "^2.3.0",
"@mdx-js/react": "^2.3.0",
"@next/mdx": "^13.4.0",
"@prisma/client": "4.13.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.0.5",
"@vercel/analytics": "^0.1.11",
"@vercel/kv": "^0.1.1",
"@vercel/og": "^0.5.4",
"@vercel/speed-insights": "^1.0.12",
"@wits/next-themes": "^0.2.16",
"class-variance-authority": "^0.5.2",
"clsx": "^1.2.1",
"date-fns": "2.29.3",
"framer-motion": "^10.9.1",
"geist": "^1.2.0",
"lucide-react": "^0.166.0",
"mini-svg-data-uri": "^1.4.4",
"next": "^14.2.5",
"next-contentlayer": "^0.3.4",
"next-themes": "0.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-wrap-balancer": "^0.4.1",
"reading-time": "1.5.0",
"rehype": "12.0.1",
"rehype-code-titles": "1.1.0",
"rehype-pretty-code": "0.6.0",
"rehype-prism-plus": "1.5.0",
"remark-gfm": "3.0.1",
"shiki": "0.12.1",
"swr": "^2.0.3",
"tailwind-merge": "^1.12.0",
"tailwindcss-animate": "^1.0.5",
"ts-node": "^10.9.1",
"vaul": "^0.6.8"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/node": "18.11.17",
"@types/react": "18.0.26",
"autoprefixer": "10.4.13",
"eslint": "8.30.0",
"eslint-config-next": "^14.2.2",
"postcss": "8.4.20",
"prisma": "4.13.0",
"tailwindcss": "3.2.4",
"typescript": "4.9.4"
}
}