I create a new Gatsby project (with JS, tailwind). I would like to install other dependancies like gatsby-plugin-react-helmet, @mui/icons-material for example.
Unfortunately I have error messages :enter image description here
I've tried
npm audit fix
npm audit fix --force
npm update
but unfortunately it doesn't solve the problems.
I've tried to delete package.lock.json and node modules before reinstalling nm but it doesn't change anything...I have alos tried
npm install --legacy-peer-deps
My version of Gatsby is 5.13.5, Node 20.15.0, npm 10.7.0
How could I solve these issues given that I have other dependancies to install bacuse I would like to migrate my React website to Gatsby.
I would like to install dependancies: gatsby-plugin-react-helmet, @mui/icons-material.
So, normally I would have no error message and the dependancies should appear in package.json and the dependancies should work.