mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
e5c46c2632
Next.js v4 requires React v16.
19 lines
398 B
JSON
19 lines
398 B
JSON
{
|
|
"name": "with-socket.io",
|
|
"version": "1.0.0",
|
|
"dependencies": {
|
|
"express": "^4.15.2",
|
|
"isomorphic-fetch": "^2.2.1",
|
|
"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"
|
|
}
|
|
}
|