blog-backup/package.json
OpenClaw Bot b618772883 Add markdown rendering with react-markdown
- Installed react-markdown and remark-gfm for GitHub-flavored markdown
- Installed @tailwindcss/typography for proper prose styling
- Rewrote page.tsx to render markdown content as HTML
- Links are now clickable with proper hover states
- Headers, lists, and other markdown elements properly styled
- Fixes Task #12: Blog now renders markdown correctly
2026-02-19 08:45:14 -06:00

31 lines
662 B
JSON

{
"name": "blog-backup",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.19",
"date-fns": "^4.1.0",
"next": "16.1.6",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"tailwindcss": "^4",
"typescript": "^5"
}
}