Task
Audit the codebase for unused dependencies in package.json/go.mod and remove them. Also identify and remove dead code (unused functions, variables, imports).
Scope
- Check all dependency files for unused packages
- Run dependency analysis tools
- Remove dead code identified by linters
- Update lock files after removal
Acceptance Criteria
- No unused dependencies in dependency files
- Dead code eliminated
- All tests still pass after changes
Task
Audit the codebase for unused dependencies in package.json/go.mod and remove them. Also identify and remove dead code (unused functions, variables, imports).
Scope
Acceptance Criteria