rsnext/examples/with-mobx/package.json
David Golden d5daa06654
Upgrade with-mobx example (#17921)
upgrade mobx dependencies for with-mobx example and make all necessary code changes as per https://mobx.js.org/migrating-from-4-or-5.html

addresses #17809
2020-11-09 22:50:47 +00:00

21 lines
445 B
JSON

{
"name": "with-mobx",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"mobx": "^6.0.1",
"mobx-react": "^7.0.0",
"next": "latest",
"react": "^16.13.1",
"react-dom": "^16.13.1"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.0"
}
}