Node modules add up quickly. If using webpack for bundling purposes, the webpack analyzer displays which node module dependencies are taking up the most space. Which can help answer questions like, do I actually need this? Or can I import less of the package?
https://www.npmjs.com/package/webpack-bundle-analyzer
Is it really necessary to run your own debounceFunction inside React useCallback?