About
Dependencies are dependency in the code used to build the dependency graph.
These dependency packages are required by your application in production
If an other package adds your package as a dependency, this dependencies will also be downloaded.
Management
Add
- Installation and add as dependency in package.json in the dependencies property
npm install --save <package_name>
Uninstall
- Uninstalling removing dependency in package.json
npm uninstall --save <package_name>