rsnext/examples/custom-server-typescript/package.json
Corbin Crutchley 9504a389c0 Update dependencies of various examples (#6731)
Minor changes to examples. Updating major semver updates with only `package.json` changes. 
I've done my best to make sure that these packages.json files all have `latest` for the `nextjs` package, `cross-env` for those with `server.js` files, etc.
I also added a `package.json` to `with-dynamic-app-layout` (it was missing one previously)

Made sure to test all of these packages post-upgrade to ensure maintained functionality
2019-03-27 01:42:49 +01:00

21 lines
514 B
JSON

{
"scripts": {
"dev": "nodemon",
"build": "next build && tsc && tsc --project tsconfig.server.json",
"start": "cross-env NODE_ENV=production node .next/server"
},
"dependencies": {
"next": "latest",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"@types/next": "^8.0.1",
"@types/react": "^16.8.8",
"@zeit/next-typescript": "^1.1.1",
"cross-env": "^5.2.0",
"nodemon": "^1.18.10",
"ts-node": "^8.0.3",
"typescript": "^3.3.3333"
}
}