argoyle 2f34286eda
schemas-app / build (push) Successful in 59s
schemas-app / deploy-prod (push) Successful in 1m39s
chore(deps): remove unused dependencies (#128)
## Summary

- Remove `@nuxtjs/eslint-module` — redundant with `@nuxt/eslint`, not referenced in nuxt.config.ts
- Remove `eslint-plugin-nuxt` — not used in eslint.config.mjs, bundles conflicting old deps
- Remove `vite-plugin-eslint2` — peer dep of `@nuxt/eslint`, not needed as direct dep
- Remove `vue-router` — auto-included by Nuxt

This also unblocks the ESLint v10 upgrade by removing `eslint-webpack-plugin` (transitive dep of `@nuxtjs/eslint-module`).

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Reviewed-on: #128
2026-03-07 10:23:49 +00:00

Unbound Schemas - Web UI

A Nuxt 4 application with Vuetify for viewing and managing federated GraphQL schemas.

Features

  • 📊 Dashboard with schema statistics and recent updates
  • 📝 View all published schemas by ref (production, staging, etc.)
  • 🔍 Search and filter schemas
  • 📄 View schema SDL (Schema Definition Language)
  • 📥 Download and copy schemas
  • 🌳 View merged supergraphs for each ref
  • 🎨 Modern Material Design UI with Vuetify

Environment Variables

Create a .env file in the root directory:

NUXT_PUBLIC_API_BASE=http://localhost:8080

The API base URL points to your GraphQL Schema Registry backend service.

Setup

Make sure to install dependencies:

# npm
npm install

# pnpm
pnpm install

# yarn
yarn install

# bun
bun install

Development Server

Start the development server on http://localhost:3500:

# npm
npm run dev

# pnpm
pnpm dev

# yarn
yarn dev

# bun
bun run dev

Production

Build the application for production:

# npm
npm run build

# pnpm
pnpm build

# yarn
yarn build

# bun
bun run build

Locally preview production build:

# npm
npm run preview

# pnpm
pnpm preview

# yarn
yarn preview

# bun
bun run preview

Check out the deployment documentation for more information.

S
Description
No description provided
Readme 1.9 MiB
Languages
Vue 56.1%
TypeScript 40.5%
JavaScript 2.7%
Dockerfile 0.7%