-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "portfolio",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "contentlayer build && next build",
"check": "pnpm lint && pnpm typecheck && pnpm format:check",
"clean": "rm -rf node_modules .next .contentlayer pnpm-lock.yaml",
"dev": "next dev --experimental-https",
"fmc": "prettier --check \"**/*.{ts,tsx,mdx}\"",
"fmw": "prettier --write \"**/*.{ts,tsx,mdx}\"",
"lnt": "next lint",
"shadcn:add": "pnpm dlx shadcn-ui@latest add",
"start": "next start",
"tc": "tsc --noEmit"
},
"dependencies": {
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@t3-oss/env-nextjs": "^0.8.0",
"@vercel/analytics": "^1.2.2",
"@vercel/kv": "^1.0.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"contentlayer": "^0.3.4",
"embla-carousel-react": "8.0.0",
"framer-motion": "^11.0.15",
"lucide-react": "^0.359.0",
"next": "14.1.3",
"next-contentlayer": "^0.3.4",
"nextjs-toploader": "^1.6.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-youtube": "^10.1.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-code-titles": "^1.2.0",
"rehype-pretty-code": "^0.13.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "3.0.1",
"sharp": "^0.33.2",
"tailwind-merge": "^2.2.2",
"tailwindcss-animate": "^1.0.7",
"zod": "^3.22.4"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.2.1",
"@tailwindcss/typography": "^0.5.10",
"@total-typescript/ts-reset": "^0.5.1",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.3",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"postcss": "^8.4.36",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.12",
"tailwind-scrollbar": "^3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.2"
},
"overrides": {
"next-contentlayer": {
"next": "$next"
}
}
}