mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9319c158a5
Fixes #4691 Fixes #4614 This PR gives path to https://github.com/zeit/next-plugins/pull/242 I did not add or remove `^` near dependency versions in package.json files. However, I don't exclude that some changes can be made given that rc is more stable than beta.
24 lines
606 B
JSON
24 lines
606 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-rc.1",
|
|
"@zeit/next-typescript": "1.1.0",
|
|
"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"
|
|
}
|
|
}
|