rsnext/examples/with-socket.io/package.json
Dave Brudner 442fbfaa4d Update with-socket.io example (#9583)
* Using custom hook instead of `_app.js` to interface with
`socket.io-client`
2019-12-05 11:08:09 -05:00

18 lines
400 B
JSON

{
"name": "with-socket.io",
"version": "1.0.0",
"dependencies": {
"express": "^4.15.2",
"isomorphic-unfetch": "^3.0.0",
"next": "latest",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"socket.io": "^2.2.0",
"socket.io-client": "^2.2.0"
},
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
}
}