mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
397daece42
* [with-typescript] Updated `@zeit/next-typescript` and typescript typings * [with-typescript] Updated tsconfig to match new recommended config * [with-typescript] upgraded dependencies, implement type-checking * [with-typescript] add _document example, fixed tsconfig * [with-typescript] updated README * [with-typescript] updated example contents * [with-typescript] adopt the Layout component from Flow example
24 lines
477 B
JSON
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": "^6.1.7",
|
|
"@types/react": "^16.4.14",
|
|
"@types/react-dom": "16.0.7",
|
|
"typescript": "3.0.3"
|
|
},
|
|
"license": "ISC"
|
|
}
|