rsnext/examples/custom-server-micro/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

19 lines
397 B
JSON

{
"main": "server.js",
"scripts": {
"dev": "micro-dev --watch server.js",
"build": "next build",
"start": "cross-env NODE_ENV=production micro"
},
"dependencies": {
"micro": "^9.3.3",
"micro-route": "^2.5.0",
"next": "latest",
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"devDependencies": {
"cross-env": "^5.2.0",
"micro-dev": "^3.0.0"
}
}