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
2017-11-16 12:28:10 +01:00

23 lines
479 B
JSON

{
"name": "with-typescript",
"version": "1.0.0",
"scripts": {
"dev": "concurrently \"tsc --pretty --watch\" \"next\"",
"prebuild": "tsc",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "latest",
"react": "^16.1.0",
"react-dom": "^16.1.0"
},
"devDependencies": {
"@types/next": "^2.4.5",
"@types/react": "^16.0.22",
"concurrently": "^3.5.0",
"tslint": "^5.8.0",
"typescript": "^2.6.1"
}
}