1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-socket.io/package.json

19 lines
400 B
JSON

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