Previously, I tried installing the package react-bootstrap, but since it wasn't compatible with my version of react I gave up.
However, now I get the following error when running npm install for any package:
npm ERR! code EPEERINVALID
npm ERR! peerinvalid The package react does not satisfy its siblings' peerDependencies requirements!
npm ERR! peerinvalid Peer [email protected] wants react@>=0.14.0
This happens even though react-bootstrap is not actually installed.
It is NOT listed in package.json. In this file I only specify the version of react:
react": "~0.13.3"
How can I get rid of this error?
package.jsonas well.