How do I remove unused dependencies from react-scripts?

Viewed 294

I'm trying to removed dependencies like jest. Also workbox-webpack-plugin has a dependency of a dependency with google analytics with is really annoying.

Am I able to remove these things somehow without ejecting?

1 Answers

Using commands below -

npm uninstall <package_name> <br>
npm uninstall --save <package_name>

If you want to know in more detail visit this link

Related