rsnext/examples/with-typescript/package.json

21 lines
387 B
JSON
Raw Normal View History

{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"next": "latest",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
2020-08-30 04:17:02 +02:00
"typescript": "4.0"
}
}