mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
64f3720e7f
I simplified the example by removing `.eslintrc.js` and related packages, as well as `nodemon`. I also added a description in the README to address the question by @kachkaev in the original pull request (#4163).
18 lines
359 B
JSON
18 lines
359 B
JSON
{
|
|
"name": "with-sitemap-and-robots-express-server",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "next build",
|
|
"start": "node server/app.js",
|
|
"now": "now && now alias"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.16.2",
|
|
"next": "latest",
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0",
|
|
"sitemap": "^1.13.0"
|
|
}
|
|
}
|