rsnext/examples/next-forms/package.json
Lee Robinson 9986e82263
examples: Update next-forms example (#60052)
- Remove `experimental_` import for `useFormStatus`
- Update all dependencies
- Move to `postgres` so it works with any Postgres provider
- Fix a TypeScript issue
- Use `next dev --turbo`
2023-12-30 11:17:14 -06:00

19 lines
393 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start"
},
"dependencies": {
"@types/node": "20.10.6",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"next": "latest",
"postgres": "^3.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.3.3",
"zod": "^3.22.4"
}
}