When running npm install, it reports back about 5000 low vulnerabilities. npm audit fix solves most of these, except some issues with getting sass-lint and react-scripts packages fixed, and introduces some new issues - specifically issues with eslint not wanting to work correctly with @typescript-eslint/eslint-plugin and its no-redeclare rule. eslint 7.11.0 also seems to be a lot stricter, with no-unused-vars causing react-scripts to not build the application.
When running
npm install
, it reports back about 5000 low vulnerabilities.npm audit fix
solves most of these, except some issues with getting sass-lint and react-scripts packages fixed, and introduces some new issues - specifically issues with eslint not wanting to work correctly with @typescript-eslint/eslint-plugin and its no-redeclare rule. eslint 7.11.0 also seems to be a lot stricter, with no-unused-vars causing react-scripts to not build the application.