rsnext/examples/with-rebass/package.json
Austin Huang 2e87e22731
Fix for missing babel dependencies in with-rebass example (#16839)
Pull request for (Issue: Fix or remove the with-rebass example #16828). Just added some missing dependencies to the package.json of the example

Fixes #16839
2020-09-21 02:16:15 +00:00

19 lines
476 B
JSON

{
"name": "with-rebass",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"babel-plugin-styled-components": "^1.1.7",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-set-prototype-of-to-assign": "^6.22.0",
"next": "latest",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rebass": "1.0.0-1",
"styled-components": "^2.1.1"
},
"license": "MIT"
}