2017-12-09 02:17:04 +00:00
|
|
|
{
|
|
|
|
"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",
|
2019-01-05 11:19:27 +00:00
|
|
|
"react": "^16.7.0",
|
|
|
|
"react-dom": "^16.7.0"
|
2017-12-09 02:17:04 +00:00
|
|
|
},
|
|
|
|
"license": "ISC",
|
|
|
|
"devDependencies": {
|
|
|
|
"babel-plugin-transform-define": "^1.3.0"
|
|
|
|
}
|
|
|
|
}
|