Ionic - found 50 vulnerabilities on npm install

After creating a new Ionic Angular project, when I run npm install, the command completes with the following message:

up to date, audited 1795 packages in 4s

158 packages are looking for funding
  run `npm fund` for details

50 vulnerabilities (2 low, 43 moderate, 5 high)

To address issues that do not require attention, run:
  npm audit fix

To address all issues (including breaking changes), run:
  npm audit fix --force

Run `npm audit` for details.

Ionic version: 6.18.1

npm update does not fix vulnerabilities. Subsequent npm audit fix finishes with the same message. Nothing seems to fix the vulnerabilities. Any fix for the problem?

same error here… any solution?

Yes, used npm-check-updates npm package available here, it fixed the issue.
Running command ncu list all new dependencies for the project in the current directory, review them.
ncu -u will update the package file of the project. Once package file is updated, npm install new versions. Now the project has zero vulnerability. Update if it fixes the issue.