mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
6eba3ad9ab
Docker Multistage * Remove `devDependencies` from `./node_modules` in `builder` for faster copy on `base` init * Added `isomorphic-unfetch` to show it not being copied over to `base`. * `isomorphic-fetch` will still show from `next`
19 lines
321 B
JSON
19 lines
321 B
JSON
{
|
|
"name": "with-docker",
|
|
"version": "1.0.0",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "16.2.0",
|
|
"react-dom": "16.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"isomorphic-unfetch": "^3.0.0"
|
|
},
|
|
"license": "ISC"
|
|
}
|