CI / changes (push) Successful in 10s
CI / commitlint (push) Has been skipped
CI / openapi (push) Successful in 27s
CI / web (push) Successful in 38s
CI / go (push) Successful in 2m36s
CI / bird2 (push) Successful in 15s
CI / release (push) Failing after 3m7s
Refactored the project structure to support a monorepo setup, moving the web application to `apps/web/` and updating related configurations. Adjusted pre-commit hooks to use `pnpm` for linting and formatting. Updated CI workflows to reflect the new directory structure and dependencies. Removed legacy files and configurations from the previous `web/` directory, streamlining the project for better maintainability and clarity.
27 lines
786 B
JSON
27 lines
786 B
JSON
{
|
|
"name": "evobgp",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "pnpm --filter @evobgp/web dev",
|
|
"build": "pnpm --filter @evobgp/web build",
|
|
"check": "pnpm --filter @evobgp/web check",
|
|
"lint": "pnpm --filter @evobgp/web lint",
|
|
"format": "pnpm --filter @evobgp/web format"
|
|
},
|
|
"packageManager": "pnpm@10.33.2",
|
|
"engines": {
|
|
"node": ">=22"
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^19.8.1",
|
|
"@commitlint/config-conventional": "^19.8.1",
|
|
"@markwylde/semantic-release-gitea": "^2.2.0",
|
|
"@semantic-release/changelog": "^6.0.3",
|
|
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
"@semantic-release/exec": "^7.0.0",
|
|
"@semantic-release/release-notes-generator": "^14.0.3",
|
|
"semantic-release": "^25.0.2"
|
|
}
|
|
}
|