Consolidate webapp structure by merging nested components into the main repository

This commit is contained in:
defiQUG
2025-11-05 16:12:53 -08:00
parent 09c5a1fd5e
commit 3b09c35c47
55 changed files with 10240 additions and 0 deletions

41
.github/dependabot.yml vendored Normal file
View File

@@ -0,0 +1,41 @@
version: 2
updates:
# Frontend dependencies
- package-ecosystem: "npm"
directory: "/webapp"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "frontend"
# Orchestrator dependencies
- package-ecosystem: "npm"
directory: "/orchestrator"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "orchestrator"
# Contract dependencies
- package-ecosystem: "npm"
directory: "/contracts"
schedule:
interval: "weekly"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "contracts"
# GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
labels:
- "dependencies"
- "github-actions"