Npm Guide
Did you know, you can find unused packages in your codebase with the help of a package named: ๐ป๐ฝ๐บ-๐ฐ๐ต๐ฒ๐ฐ๐ธ.
1. Install the ๐ป๐ฝ๐บ-๐ฐ๐ต๐ฒ๐ฐ๐ธ package (via yarn or npm)
2. Open package.json file and add below line in scripts:
"๐๐๐-๐โ๐๐๐": "๐๐๐-๐โ๐๐๐"
3. Open terminal, go to your project's path and run:
๐๐๐ ๐๐ข๐ ๐๐๐-๐โ๐๐๐
4. You will get a list of unused, outdated packages with detailed description.
Here is the link for the package: npmjs.com/package/npm-check
ย