1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-static-export/package.json
Andy Kenward c29ec6bdd0 example/with-static-export update react & next dependencies (#3238)
`next@latest` instead of beta
react 16
2017-11-04 11:24:54 +01:00

21 lines
429 B
JSON

{
"name": "with-static-export",
"main": "server.js",
"dependencies": {
"express": "^4.15.3",
"isomorphic-fetch": "^2.2.1",
"next": "latest",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"serve": "^5.2.2"
},
"scripts": {
"dev": "node .",
"build": "next build",
"preexport": "npm run build",
"export": "next export",
"prestart": "npm run export",
"start": "serve out"
}
}