tldraw/templates/nextjs/package.json
Steve Ruiz 0c68317885
Update template versions to latest (#3646)
This PR bumps the template versions to latest.

### Change Type

- [x] `internal` — Does not affect user-facing stuff
- [x] `bugfix` — Bug fix
2024-04-30 10:12:58 +00:00

29 lines
606 B
JSON

{
"name": "tldraw-nextjs-app-example",
"version": "0.1.0",
"private": true,
"author": {
"name": "tldraw GB Ltd.",
"email": "hello@tldraw.com"
},
"homepage": "https://tldraw.dev",
"license": "Apache-2.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"tldraw": "latest",
"@types/node": "20.3.1",
"@types/react": "18.2.12",
"@types/react-dom": "18.2.5",
"eslint": "8.43.0",
"eslint-config-next": "13.4.6",
"next": "13.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.1.3"
}
}