mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
6d41ed7e6f
I've updated the TypeScript dependency to the latest version. Also removed some dependencies that may not be needed. I've also fixed tslint errors which may have appeared because of previous updates to this starter kit, as well as added comments to explain some parts of the code.
24 lines
478 B
JSON
24 lines
478 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": "^7.0.2",
|
|
"react": "^16.7.0",
|
|
"react-dom": "^16.7.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/next": "^7.0.6",
|
|
"@types/react": "^16.4.16",
|
|
"@types/react-dom": "16.0.11",
|
|
"typescript": "3.2.4"
|
|
},
|
|
"license": "ISC"
|
|
}
|