rsnext/examples/github-pages/package.json
2022-05-29 20:12:37 +00:00

13 lines
342 B
JSON

{
"private": true,
"scripts": {
"dev": "next",
"build": "next build && next export",
"deploy": "next build && touch out/.nojekyll && git add out/ && git commit -m \"Deploy\" && git subtree push --prefix out origin gh-pages"
},
"dependencies": {
"next": "latest",
"react": "latest",
"react-dom": "latest"
}
}