feat: add Verdaccio local npm registry for development

Summary

Adds Verdaccio as a local npm registry proxy for development, enabling local npm package testing without publishing to GitLab.

Changes

  • Added verdaccio service to compose.override.yml
  • Added verdaccio/config.yaml with configuration for local development

Usage

# Start Verdaccio
docker compose up -d verdaccio

# First time setup (create local user)
npm adduser --registry http://localhost:4873

# Publish a local package
cd ../ai-delegate
npm publish --registry http://localhost:4873

# Rebuild UI (will fetch from Verdaccio if package exists there)
docker compose build ui

Web UI

Access at http://localhost:4873

Related

🤖 Generated with Claude Code

Merge request reports

Loading