mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
18f8ab392a
# Conflicts: # examples/with-apollo/lib/initApollo.js # examples/with-apollo/package.json # examples/with-react-with-styles/package.json # examples/with-static-export/package.json # package.json
21 lines
431 B
JSON
21 lines
431 B
JSON
{
|
|
"name": "with-static-export",
|
|
"main": "server.js",
|
|
"dependencies": {
|
|
"express": "^4.15.3",
|
|
"isomorphic-unfetch": "^2.0.0",
|
|
"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"
|
|
}
|
|
}
|