1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-typescript/package.json
Duncan L d141b95603 Examples: Update with-typescript Example Packages (#5410)
Update packages for with-typescript example
2018-10-09 12:48:27 +02:00

24 lines
477 B
JSON

{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc"
},
"dependencies": {
"@zeit/next-typescript": "^1.1.1",
"next": "latest",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"devDependencies": {
"@types/next": "^7.0.1",
"@types/react": "^16.4.16",
"@types/react-dom": "16.0.8",
"typescript": "3.1.1"
},
"license": "ISC"
}