-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.47 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.47 KB
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
{
"name": "tech-blog",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prebuild": "node scripts/generate-blog-index.js",
"predev": "node scripts/generate-blog-index.js"
},
"dependencies": {
"@tabler/icons-react": "^3.34.1",
"copy-to-clipboard": "^3.3.3",
"date-fns": "^4.1.0",
"gray-matter": "^4.0.3",
"katex": "^0.16.22",
"lucide-react": "^0.525.0",
"markdown-to-jsx": "^7.7.12",
"mermaid": "^11.9.0",
"next": "15.4.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"react-syntax-highlighter": "^15.6.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-prism-plus": "^2.0.1",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-emoji": "^5.0.1",
"remark-footnotes": "^4.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-slug": "^7.0.1",
"remark-toc": "^9.0.0",
"slugify": "^1.6.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@types/node": "^20.19.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"eslint": "^9.31.0",
"eslint-config-next": "^15.4.2",
"tailwindcss": "^4.1.11",
"typescript": "^5.8.3"
}
}