I got a project from my client in which the backend is lumen and the front end is reactjs and I want to do the enhancements on that.
Lumen gets installed successfully. But I failed to install the reactjs project.
When I executed "npm install" inside the folder It shows 33 vulnerabilities. And when executing the npm audit I found that the issue is for the module "node-saas 5.0.0"
First I executed the project in node 16.15.0 and after that realized that node-saas 5.0.0 is compatible with node 15
So I switched to node 15.0.0. Again it shows other vulnerabilities for the modules like jest and more.
Every time I resolve the problem that getting from the npm audit, the new one arises. How can I solve this issue?