mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
4cab5228a0
* gh-page-exemple * add babelrc for gh-page exemple * Fix example (exemple in fr) * example fix typo * lint fix
21 lines
569 B
JSON
21 lines
569 B
JSON
{
|
|
"name": "gh-pages",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"export": "next export",
|
|
"deploy": "rm -rf node_modules/.cache && next build && next export && touch out/.nojekyll && git add out/ && git commit -m \"Deploy Next.js to gh-pages\" && git subtree push --prefix out origin gh-pages"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "^16.0.0",
|
|
"react-dom": "^16.0.0"
|
|
},
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"babel-plugin-transform-define": "^1.3.0"
|
|
}
|
|
}
|