rsnext/examples/with-next-sitemap/package.json
Vitaly Baev ff1b8e9605
fix: added typescript dependency in next-sitemap example (#25866)
As mentioned in #25854 `witn-next-sitemap` example is missing `typescript` package as a dependency

- [x] Make sure the linting passes
2021-06-07 23:46:51 +00:00

22 lines
447 B
JSON

{
"name": "with-next-sitemap",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"postbuild": "next-sitemap"
},
"dependencies": {
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"devDependencies": {
"@types/node": "14.6.0",
"@types/react": "^16.9.45",
"next-sitemap": "latest",
"typescript": "^4.3.2"
}
}