1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Fix with-mobx-state-tree example (#5258)

This commit is contained in:
Henrik Wenz 2018-09-22 20:21:54 +00:00 committed by Tim Neutkens
parent 2c0ff4b925
commit dc3be63ad2
2 changed files with 6 additions and 6 deletions

View file

@ -3,6 +3,6 @@
"next/babel"
],
"plugins": [
"transform-decorators-legacy"
["@babel/plugin-proposal-decorators", { "legacy": true }]
]
}
}

View file

@ -7,15 +7,15 @@
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"mobx": "3.3.1",
"mobx-react": "^4.0.4",
"mobx-state-tree": "1.0.1",
"mobx": "^5.1.2",
"mobx-react": "^5.2.8",
"mobx-state-tree": "^3.4.0",
"next": "latest",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"license": "ISC",
"devDependencies": {
"babel-plugin-transform-decorators-legacy": "^1.3.4"
"@babel/plugin-proposal-decorators": "7.1.0"
}
}