mjhm / create-react-dapp

Create React Ethereum dApps with no configuration.
MIT License
109 stars 19 forks source link

Updates to run cleanly #10

Closed trptcolin closed 4 years ago

trptcolin commented 5 years ago

Thanks for putting this together! I needed to do a couple of things to get the dapp up and running via the instructions in the README:

Pin solc to 0.4.x

This allows npm run migrate to run cleanly with later solc installations (current, via Truffle, is 0.5.0).

Update React-related dependencies

The updated template dependencies match what currently gets pulled in with the latest versions of create-react-app.

Some of the eslint devDependencies were included in (and conflicting with) the version of react-scripts that my setup pulled in, so those have been removed in preference of the versions transitively included in dependencies.

I believe this also addresses #8 (create-react-app 2) and #9 (solc version mismatch)