mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
3f6834dfec
This example app shows you how to set up sitemap.xml and robots.txt files for proper indexing by search engine bots.
27 lines
643 B
JSON
27 lines
643 B
JSON
{
|
|
"name": "with-sitemap-and-robots-express-server",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "next build",
|
|
"start": "node server/app.js",
|
|
"dev": "nodemon server/app.js --watch server",
|
|
"now": "now && now alias"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.16.2",
|
|
"next": "latest",
|
|
"react": "^16.2.0",
|
|
"react-dom": "^16.2.0",
|
|
"sitemap": "^1.13.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^4.15.0",
|
|
"eslint-config-airbnb": "^16.1.0",
|
|
"eslint-plugin-import": "^2.8.0",
|
|
"eslint-plugin-jsx-a11y": "^6.0.3",
|
|
"eslint-plugin-react": "^7.5.1",
|
|
"nodemon": "^1.14.11"
|
|
}
|
|
}
|