Commands
flux list
View all installed dependencies in your project using Flux.
Overview
The flux list command displays all currently installed dependencies in your project. This includes both direct and development dependencies, pulled from package.json and resolved via the lockfile.
Usage
flux listExample Output
dependencies:
react: 18.3.0
react-dom: 18.3.0
axios: 1.6.0
devDependencies:
typescript: 5.3.3
eslint: 8.55.0Features
- Shows both
dependenciesanddevDependencies - Reads from
flux.lockfor accurate, resolved versions - Faster and cleaner than
npm list,yarn list, orpnpm list - Helps confirm what’s actually installed vs. declared
Use Cases
Verify Installed Packages
Use this to quickly audit which versions are installed.
Confirm Install Success
After installing a new package, run flux list to confirm it's correctly added added.
Troubleshoot Version Issues
Helps debug mismatches between what's in package.json and what’s actually present.
Tabs: List Use Cases
flux listJust want to see all installed packages? Run it anytime.
flux install express
flux listUse after installing to confirm the addition.
flux listUse if you're unsure why a package isn't being picked up correctly in dev tools.
Related Commands
flux install– To install new packagesflux update– To update current packagesflux outdated– To list packages that have updates available