Remove unused bluebird dependency
Background
The bluebird Promise library is included as a dependency in package.json but doesn't appear to be used anywhere in the codebase. No imports or requires of bluebird were found in the source code.
Proposed Changes
- Remove
bluebird from dependencies in package.json
- Remove
@types/bluebird from devDependencies in package.json
- Run
npm install to update package-lock.json
Benefits
- 📦 Reduced package size
- 🧩 Simplified dependency tree
- 🛠️ Less maintenance overhead
Verification
- Build the application
- Verify the application runs correctly without bluebird
Remove unused bluebird dependency
Background
The
bluebirdPromise library is included as a dependency inpackage.jsonbut doesn't appear to be used anywhere in the codebase. No imports or requires of bluebird were found in the source code.Proposed Changes
bluebirdfrom dependencies in package.json@types/bluebirdfrom devDependencies in package.jsonnpm installto update package-lock.jsonBenefits
Verification