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

21 lines
430 B
JSON
Raw Normal View History

2017-07-01 19:44:58 +00:00
{
"name": "with-static-export",
2017-07-01 19:44:58 +00:00
"main": "server.js",
"dependencies": {
"express": "^4.15.3",
"isomorphic-unfetch": "^2.0.0",
"next": "latest",
"react": "^16.7.0",
"react-dom": "^16.7.0",
2018-07-27 19:13:55 +00:00
"serve": "9.4.0"
2017-07-01 19:44:58 +00:00
},
"scripts": {
"dev": "node .",
"build": "next build",
"preexport": "npm run build",
"export": "next export",
"prestart": "npm run export",
"start": "serve out"
2017-07-15 03:38:08 +00:00
}
2017-07-01 19:44:58 +00:00
}