rsnext/examples/with-kea/package.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
674 B
JSON
Raw Normal View History

2017-11-13 12:21:11 +01:00
{
"private": true,
2017-11-13 12:21:11 +01:00
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"kea": "^0.28.4",
2018-01-30 21:44:18 +01:00
"next": "latest",
"next-redux-wrapper": "^2.0.0",
2017-11-13 12:21:11 +01:00
"prop-types": "^15.6.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2017-11-13 12:21:11 +01:00
"react-redux": "^5.0.6",
"redux": "^4.0.0",
2017-11-13 12:21:11 +01:00
"reselect": "^3.0.1"
},
"devDependencies": {
"@babel/core": "7.22.5",
"@babel/plugin-proposal-decorators": "7.22.5"
},
"babel": {
"presets": [
"next/babel"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
]
]
2017-11-13 12:21:11 +01:00
}
}