Perbaiki konflik ketergantungan hulu, atau coba lagi perintah ini dengan-force, atau --legacy-peer-deps untuk menerima resolusi ketergantungan yang salah (dan berpotensi rusak).

'--legacy-peer-deps' is what fixed this for me

# Place it after the keyword install like this:
npm install '--legacy-peer-deps' -S <whatever package>
# -S is the same as --save
# i.e
npm install '--legacy-peer-deps' --save react-useanimations
Code Rabbi