2018-09-28 19:18:50 +00:00
|
|
|
{
|
|
|
|
"scripts": {
|
|
|
|
"dev": "nodemon server/index.ts",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "NODE_ENV=production ts-node --compilerOptions '{\"module\":\"commonjs\"}' server/index.ts"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@types/next": "^2.4.11",
|
|
|
|
"@types/react": "^16.0.36",
|
|
|
|
"next": "^7.0.0",
|
|
|
|
"next-with-typescript": "1.0.0",
|
2019-01-05 11:19:27 +00:00
|
|
|
"react": "^16.7.0",
|
|
|
|
"react-dom": "^16.7.0",
|
2018-09-28 19:18:50 +00:00
|
|
|
"ts-loader": "5.1.1",
|
|
|
|
"ts-node": "^7.0.1",
|
|
|
|
"typescript": "latest",
|
|
|
|
"typescript-babel-jest": "^1.0.5"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"nodemon": "^1.17.5"
|
|
|
|
}
|
|
|
|
}
|