Description:
When running npm install in the Claw API Express backend, the process fails due to multiple dependency conflicts. The only way to proceed is by using npm install --force, which is not ideal and may cause instability.
Steps to Reproduce:
- Clone the Claw API repo.
- Navigate to the Express backend directory.
- Run
npm install.
- Observe errors related to conflicting dependencies.
Expected Behavior:
npm install should run successfully without forcing.
Actual Behavior:
Installation fails unless run with npm install --force.
Additional Context:
- This is causing problems with stable builds and deployment.
- It might be due to outdated or incompatible package versions.
- Suggest auditing
package.json dependencies and updating or resolving conflicts.
Description:
When running
npm installin the Claw API Express backend, the process fails due to multiple dependency conflicts. The only way to proceed is by usingnpm install --force, which is not ideal and may cause instability.Steps to Reproduce:
npm install.Expected Behavior:
npm installshould run successfully without forcing.Actual Behavior:
Installation fails unless run with
npm install --force.Additional Context:
package.jsondependencies and updating or resolving conflicts.