rsnext/examples/with-typescript-types/package.json
2020-08-29 22:17:02 -04:00

23 lines
470 B
JSON

{
"name": "with-typescript-types",
"version": "1.0.0",
"main": "index.js",
"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",
"typescript": "4.0"
},
"license": "MIT"
}