mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9319c158a5
Fixes #4691 Fixes #4614 This PR gives path to https://github.com/zeit/next-plugins/pull/242 I did not add or remove `^` near dependency versions in package.json files. However, I don't exclude that some changes can be made given that rc is more stable than beta.
22 lines
440 B
JSON
22 lines
440 B
JSON
{
|
|
"name": "with-custom-babel-config",
|
|
"version": "1.0.0",
|
|
"description": "This example features:",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "next",
|
|
"build": "next build",
|
|
"start": "next start"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"react": "^16.0.0",
|
|
"react-dom": "^16.0.0"
|
|
},
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"@babel/plugin-proposal-do-expressions": "7.0.0-rc.1"
|
|
}
|
|
}
|