I cloned a react native repository and I am getting the following errors when I perform npm install
.
It seems like 2 packages have peer dependencies with the react-native package:
- react-native-async-storage/[email protected]
- [email protected]
The package.json file has "react-native": "0.68.2"
, which seems to be compatible with what react-native-async-storage package needs (react-native@"^0.0.0-0 || 0.60 - 0.68 || 1000.0.0"
) and same with [email protected] (react-native@"^0.64.0"
)
I tried --force
and --legacy-peer-deps
commands, some vulnerabilities are solved but same output for npm install
.