1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-mobx-state-tree/package.json
2018-09-22 22:21:54 +02:00

22 lines
452 B
JSON

{
"name": "with-mobx",
"version": "1.0.0",
"scripts": {
"dev": "node server.js",
"build": "next build",
"start": "NODE_ENV=production node server.js"
},
"dependencies": {
"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-proposal-decorators": "7.1.0"
}
}