Hii kartik,
Removing the node_modules and the package-lock.json and reinstall the packages.
You can run this in PowerShell (make sure you are in the correct working directory):
rm node_modules -r -force
rm package-lock.json
npm cache verify
npm install
Thank You!!