rsnext/examples/with-custom-reverse-proxy/package.json
Luis Alvarez D 1239d5af59
[Examples] Update mobx examples to not use SSR (#11576)
* Updated with-custom-reverse-proxy

* Updated readme of with-env-from-next-config-js

* Updated the kea example

* Updated with-mobx

* Updated with-mobx readme

* Updated the with-mobx-react-lite example
2020-04-07 09:48:13 -04:00

20 lines
486 B
JSON

{
"name": "with-custom-reverse-proxy",
"license": "ISC",
"dependencies": {
"express": "^4.15.3",
"next": "latest",
"react": "16.13.1",
"react-dom": "16.13.1",
"swr": "0.2.0"
},
"devDependencies": {
"cross-env": "^5.0.1",
"http-proxy-middleware": "^0.17.4"
},
"scripts": {
"dev": "cross-env NODE_ENV=development PORT=3000 node server.js",
"build": "next build",
"prod": "cross-env NODE_ENV=production PORT=3000 node server.js"
}
}