rsnext/examples/github-pages/package.json
Lee Robinson 7c44cf0a3b
Use App Router for static export example. (#47584)
To aid the new docs, stable static export in the next release.

https://beta.nextjs.org/docs/configuring/static-export
2023-03-27 23:11:47 +00:00

17 lines
459 B
JSON

{
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"deploy": "next build && touch out/.nojekyll && git add out/ && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"@types/node": "^18.11.5",
"@types/react-dom": "^18.0.7",
"@types/react": "^18.0.23",
"next": "latest",
"react-dom": "^18.2.0",
"react": "^18.2.0",
"typescript": "^4.8.4"
}
}