The code for my app is managed through GitHub and GitHub is telling me there are some vulnerabilities within my package-lock.json file.
Now as I understand it is that there could be multiple packages within the package.json file that depend or use these vulnerable packages within the package-lock.json file.
How do I update these packages to secure versions through the command line.
What I have tried:
I have tried running
npm install
I have tried removing the package-lock.json file and running
npm install
I have also tried
npm update
& thennpm install
.