rsnext/examples/with-kea/package.json
2020-08-29 22:32:35 -04:00

37 lines
690 B
JSON

{
"name": "with-kea",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"kea": "^0.28.4",
"next": "latest",
"next-redux-wrapper": "^2.0.0",
"prop-types": "^15.6.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^5.0.6",
"redux": "^4.0.0",
"reselect": "^3.0.1"
},
"license": "MIT",
"devDependencies": {
"@babel/plugin-proposal-decorators": "^7.1.0"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
}
}