Files
vercel__next.js/examples/with-edgedb/package.json
Hayden Bleasel 22e46a40ad Migrate from react-markdown to Streamdown static in EdgeDB example (#86435)
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>
2026-02-21 00:39:53 +01:00

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"
}
}