A CLI tool to find Expo config plugins available in your project dependencies.
This package helps you manage your Expo config plugins by showing which dependencies have available plugins and whether they're currently being used in your project.
Works on Expo & bare React-Native Apps (without Expo)
Simply run the package using npx in your App directory:
npx list-config-plugins
> npx list-config-plugins
Config Plugin Overview:
Used Plugins:
🟩 expo-notifications
🟩 expo-screen-orientation
🟩 expo-splash-screen
🟩 react-native-compressor
Bundled with Expo:
📦 expo-camera
📦 expo-dev-client
📦 expo-file-system
Unused Plugins:
🟥 @sentry/react-native
- 🔍 Scans your project for available Expo config plugins
- 🟩 Shows which plugins are currently in use
- 📦 Shows which plugins are automatically added by expo
- 🟥 Identifies unused available plugins
- 🌐 Finds config plugins provided by expo @config-plugins/
- ⚙️ Supports all types of React-Native & Expo configurations & Monorepos
- Analyzes your project dependencies to identify packages with Expo config plugins.
- Checks which config plugins are being used in your Expo configuration.
Monorepos should work, this depends on where your config plugins are placed.
This package will search for config plugins in ./node_modules
and walk up the folder structure (../node_modules
, ../../node_modules
, ...).
If your config plugins are there, it should work. (run with --debug to see where it is searching)