mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
22e46a40ad
This pull request updates the blog post rendering in the EdgeDB example to use our `streamdown` library in static mode instead of `react-markdown` for Markdown parsing and rendering. --------- Co-authored-by: Joseph <joseph.chamochumbi@vercel.com>
29 lines
630 B
JSON
29 lines
630 B
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"seed": "ts-node dbschema/seed.ts",
|
|
"prebuild": "npx edgeql-js"
|
|
},
|
|
"dependencies": {
|
|
"@types/react": "^18.0.5",
|
|
"@types/react-dom": "^18.0.1",
|
|
"edgedb": "latest",
|
|
"next": "latest",
|
|
"react": "^18.0.0",
|
|
"react-dom": "^18.0.0",
|
|
"streamdown": "^1.6.5"
|
|
},
|
|
"devDependencies": {
|
|
"autoprefixer": "^10.4.20",
|
|
"@types/node": "^16.11.26",
|
|
"postcss": "^8.4.49",
|
|
"prettier": "^2.6.2",
|
|
"tailwindcss": "^3.4.16",
|
|
"ts-node": "^10.7.0",
|
|
"typescript": "^4.6.3"
|
|
}
|
|
}
|