-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
110 lines (110 loc) · 3.82 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
108
109
110
{
"name": "linkedinpreview.com",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"contentlayer dev\" \"next dev\"",
"build": "next build",
"clean": "rm -rf .next .contentlayer tsconfig.tsbuildinfo",
"clean:full": "pnpm clean && rm -rf node_modules",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"check-updates": "pnpm dlx npm-check-updates --interactive --format group"
},
"dependencies": {
"@icons-pack/react-simple-icons": "^11.2.0",
"@radix-ui/react-accordion": "^1.2.2",
"@radix-ui/react-aspect-ratio": "^1.1.1",
"@radix-ui/react-avatar": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.2",
"@radix-ui/react-dialog": "^1.1.5",
"@radix-ui/react-dropdown-menu": "^2.1.5",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-navigation-menu": "^1.2.4",
"@radix-ui/react-scroll-area": "^1.2.2",
"@radix-ui/react-separator": "^1.1.1",
"@radix-ui/react-slot": "^1.1.1",
"@radix-ui/react-tabs": "^1.1.2",
"@shikijs/rehype": "^1.1.7",
"@shikijs/transformers": "^1.1.7",
"@t3-oss/env-nextjs": "^0.12.0",
"@tabler/icons-react": "^3.29.0",
"@tailwindcss/postcss": "^4.0.0",
"@tailwindcss/typography": "^0.5.16",
"@tiptap/extension-bold": "^2.11.3",
"@tiptap/extension-placeholder": "^2.11.3",
"@tiptap/extension-underline": "^2.11.3",
"@tiptap/html": "^2.11.3",
"@tiptap/pm": "^2.11.3",
"@tiptap/react": "^2.11.3",
"@tiptap/starter-kit": "^2.11.3",
"@vercel/speed-insights": "^1.1.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"contentlayer": "^0.3.4",
"date-fns": "^3.4.0",
"framer-motion": "^11.0.8",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"hast-util-select": "^6.0.3",
"lucide-react": "^0.474.0",
"next": "15.1.6",
"next-contentlayer": "^0.3.4",
"next-nprogress-bar": "^2.4.3",
"next-themes": "^0.4.4",
"react": "^19",
"react-dom": "^19",
"react-medium-image-zoom": "^5.2.13",
"react-share": "^5.1.2",
"rehype-parse": "^9.0.1",
"rehype-stringify": "^10.0.1",
"remark": "^15.0.1",
"remark-gfm": "^3.0.1",
"rss": "^1.2.2",
"runes": "^0.4.3",
"schema-dts": "^1.1.2",
"sharp": "^0.33.5",
"shiki": "^1.1.7",
"slugify": "^1.6.6",
"sonner": "^1.7.2",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.1",
"@types/draft-js": "^0.11.18",
"@types/hast": "^3.0.4",
"@types/mdx": "^2.0.13",
"@types/node": "^22",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/rss": "^0.0.32",
"@types/runes": "^0.4.3",
"@types/unist": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"eslint": "^8.57.0",
"eslint-config-next": "15.1.6",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-tailwindcss": "^3.18.0",
"eslint-plugin-unused-imports": "^4.1.4",
"postcss": "^8.4.35",
"prettier": "^3.4.2",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"engines": {
"node": ">=18",
"pnpm": ">=8"
}
}