rsnext/examples/with-typescript/package.json

23 lines
442 B
JSON
Raw Normal View History

{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"next": "latest",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^16.9.16",
"@types/react-dom": "^16.9.4",
2020-08-30 04:17:02 +02:00
"typescript": "4.0"
},
"license": "ISC"
}