rsnext/examples/custom-server-typescript/package.json
Luke Barton cbfdcce32d Update typescript examples to use 1.0.1 of next-typescript (#4472)
* Update typescript examples to use 1.0.1 of next-typescript

* Add .babelrc modifications to upgraded typescript examples
2018-05-25 11:28:35 +02:00

23 lines
609 B
JSON

{
"scripts": {
"dev": "nodemon server/index.ts",
"build": "next build && tsc --project tsconfig.server.json",
"start": "NODE_ENV=production node .next/production-server/index.js"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.48",
"@zeit/next-typescript": "1.0.1",
"babel-loader": "^7.1.4",
"next": "latest",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"typescript": "latest",
"typescript-babel-jest": "^1.0.5"
},
"devDependencies": {
"@types/next": "^2.4.11",
"@types/react": "^16.0.36",
"nodemon": "^1.17.5",
"ts-node": "^4.1.0"
}
}