-1

I create a new react project and it says

found 86 vulnerabilities (82 moderate, 4 high)
  run `npm audit fix` to fix them, or `npm audit` for details

after I run "npm audit fix" it says

fixed 0 of 86 vulnerabilities in 1929 scanned packages
  86 vulnerabilities required manual review and could not be updated

Can somebody help me to fix those vulnerabilities ?

felixmosh
  • 32,615
  • 9
  • 69
  • 88
anonymous
  • 35
  • 1
  • 7
  • Does this answer your question? [How to fix npm vulnerabilities manually?](https://stackoverflow.com/questions/51377148/how-to-fix-npm-vulnerabilities-manually) – Zoe Jun 14 '21 at 09:22
  • No it doesn't answer to the question. – anonymous Jun 14 '21 at 10:06

1 Answers1

-1

You might want to check if you are using the latest version of all your dependencies:

npm outdated
Vincent Bitter
  • 1,000
  • 1
  • 6
  • 15
  • I run "npm outdated" and I saw that I don't have latest version of all dependencies. How can I update them ? – anonymous Jun 14 '21 at 09:42
  • Please check the solution at https://stackoverflow.com/questions/16073603/how-to-update-each-dependency-in-package-json-to-the-latest-version – Vincent Bitter Jun 16 '21 at 06:12