NPM braincloud package install



  • Hi

    I am trying to install the braincloud npm package and it cannot solve a dependency. I have been looking for that async storage 2.4.2 package and I cannot find it anywhere, in https://www.npmjs.com/package/@react-native-community/async-storage there is no such version, and it is a deprecated package. On the replacement site https://www.npmjs.com/package/@react-native-async-storage/async-storage the latest version is 1.15.8.
    I understand I will not be needing that package, but I do not know how to skip its installation. Could you help me with this?

    npm WARN ERESOLVE overriding peer dependency
    npm WARN While resolving: braincloud@4.8.0
    npm WARN Found: @react-native-community/async-storage@undefined
    npm WARN node_modules/@react-native-community/async-storage
    npm WARN
    npm WARN Could not resolve dependency:
    npm WARN peer @react-native-community/async-storage@"^2.4.2" from braincloud@4.8.0
    npm WARN node_modules/braincloud
    npm WARN   braincloud@"*" from the root project
    npm ERR! code ETARGET
    npm ERR! notarget No matching version found for @react-native-community/async-storage@^2.4.2.
    npm ERR! notarget In most cases you or one of your dependencies are requesting
    npm ERR! notarget a package version that doesn't exist.
    

  • bitHeads

    You can bypass the peer dependencies by adding --legacy-peer-deps flag to your npm install. After modifying package.json, then use npm-install-peers to install the rest of peer dependencies.


Log in to reply