rsnext/examples/with-edgedb/package.json
Colin McDonnell 842e4ec023
Add with-edgedb example (#35929)
## Documentation / Examples
 
- [X] Make sure the linting passes by running `yarn lint`
2022-04-27 16:49:17 +00:00

25 lines
546 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",
"react-markdown": "^8.0.2"
},
"devDependencies": {
"@types/node": "^16.11.26",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}