rsnext/examples/convex/package.json
Ian Macartney 85a0354930
update convex README.md (#65765)
Updates the readme to point to the new docs location, and bumps the
convex version
2024-05-16 23:52:41 +00:00

24 lines
577 B
JSON

{
"private": true,
"scripts": {
"dev": "npm-run-all --parallel dev:backend dev:frontend",
"build": "tsc && next build",
"dev:backend": "convex dev",
"dev:frontend": "next dev",
"predev": "convex dev --until-success",
"start": "next start"
},
"dependencies": {
"convex": "^1.12.0",
"next": "latest",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.15.3",
"@types/react": "18.0.37",
"@types/react-dom": "18.0.11",
"npm-run-all": "^4.1.5",
"typescript": "^4.9.5"
}
}