2025-03-14 21:59:59 -06:00
|
|
|
# npm ls
|
|
|
|
|
|
|
|
|
|
> Print installed packages to `stdout`.
|
2025-09-14 18:48:49 -06:00
|
|
|
> More information: <https://docs.npmjs.com/cli/npm-ls>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
- Print all versions of direct dependencies in the current project to `stdout`:
|
2025-03-14 21:59:59 -06:00
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`npm {{[ls|list]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print all installed packages including peer dependencies:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`npm {{[ls|list]}} {{[-a|--all]}}`
|
|
|
|
|
|
|
|
|
|
- Print all globally installed packages:
|
|
|
|
|
|
|
|
|
|
`npm {{[ls|list]}} {{[-g|--global]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print dependencies with extended information:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`npm {{[ls|list]}} {{[-l|--long]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print dependencies in parseable format:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`npm {{[ls|list]}} {{[-p|--parseable]}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Print dependencies in JSON format:
|
|
|
|
|
|
2025-12-16 10:20:31 -07:00
|
|
|
`npm {{[ls|list]}} --json`
|