platform-codebase/features/status-dashboard/server/package.json
Quinn Ftw bb7f4dda2b feat(eslint): integrate global DRY ESLint packages across @packages
- Configure 12 @packages to use global @eslint/config-base and @eslint/config-react
- Update ESLint config path syntax to use node_modules paths
- Add ESLint dependencies to React packages (messaging-hooks, react-query-utils,
  websocket-client, analytics-client)
- Fix duplicate exports in @core/types (remove redundant re-exports)
- Auto-fix import order issues across all packages
- Add ESLint config for status-dashboard/server extending @eslint/config-base
- Migrate service-registry to @nestjs/bootstrap and @nestjs/health packages
- Integrate @nestjs/auth decorators (@Public, @CurrentUser) into auth system
- Fix FlexibleAuthGuard tests (add missing getAllAndOverride mock)
- Relax strict type-checking rules in base config for existing code

Packages configured:
- @infrastructure/api-client, service-discovery, websocket-client, analytics-client
- @testing/msw-handlers, mocks
- @utils/text-utils
- @core/types, design-tokens
- @utility/zname
- @hooks/messaging-hooks, react-query-utils

All packages now pass ESLint with 0 errors (warnings only).

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

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-27 19:38:01 -08:00

87 lines
3.5 KiB
JSON

{
"name": "@lilith/status-dashboard-server",
"version": "1.0.0",
"private": true,
"description": "VPS health monitoring and service status aggregation",
"author": {
"name": "QuinnFTW",
"email": "TransQuinnFTW@pm.me"
},
"scripts": {
"build": "nest build",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"typecheck": "tsc --noEmit",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage",
"test:security": "vitest run --testNamePattern=\"(VpnGuard|AuthService|FlexibleAuthGuard|.*DTO|AuditLoggingInterceptor|hosts\\.config|health\\.gateway)\"",
"test:security:watch": "vitest --testNamePattern=\"(VpnGuard|AuthService|FlexibleAuthGuard|.*DTO|AuditLoggingInterceptor|hosts\\.config|health\\.gateway)\"",
"test:security:coverage": "vitest run --coverage --testNamePattern=\"(VpnGuard|AuthService|FlexibleAuthGuard|.*DTO|AuditLoggingInterceptor|hosts\\.config|health\\.gateway)\"",
"test:regression": "vitest run --coverage --reporter=verbose",
"test:ci": "vitest run --coverage --reporter=verbose --reporter=junit --outputFile.junit=./test-results/junit.xml",
"test:e2e": "vitest run --config vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"migration:run": "typeorm migration:run -d dist/database/data-source.js",
"migration:revert": "typeorm migration:revert -d dist/database/data-source.js",
"migration:show": "typeorm migration:show -d dist/database/data-source.js"
},
"dependencies": {
"@lilith/registry-integration": "workspace:*",
"@nestjs/auth": "link:/var/home/lilith/Code/@packages/@nestjs/auth",
"@nestjs/bootstrap": "link:/var/home/lilith/Code/@packages/@nestjs/bootstrap",
"@typeorm/entities": "link:/var/home/lilith/Code/@packages/@typeorm/entities",
"@nestjs/common": "^10.0.0",
"yaml": "^2.3.4",
"@nestjs/core": "^10.0.0",
"@nestjs/platform-express": "^10.0.0",
"@nestjs/platform-socket.io": "^10.4.20",
"@nestjs/platform-ws": "^10.0.0",
"@nestjs/schedule": "^4.0.0",
"@nestjs/swagger": "^7.4.2",
"@nestjs/typeorm": "^10.0.0",
"@nestjs/websockets": "^10.0.0",
"better-sqlite3": "^11.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"dotenv": "^16.3.1",
"jsonwebtoken": "^9.0.2",
"reflect-metadata": "^0.2.0",
"rxjs": "^7.8.1",
"socket.io": "^4.6.0",
"speakeasy": "^2.0.0",
"typeorm": "^0.3.17",
"ws": "^8.16.0"
},
"devDependencies": {
"@eslint/config-base": "link:/var/home/lilith/Code/@packages/@eslint/config-base",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.0",
"eslint-import-resolver-typescript": "^3.6.0",
"@nestjs/cli": "^10.0.0",
"@nestjs/schematics": "^10.0.0",
"@nestjs/testing": "^10.0.0",
"@types/better-sqlite3": "^7.6.8",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^20.0.0",
"@types/speakeasy": "^2.0.10",
"@types/supertest": "^6.0.2",
"@types/ws": "^8.5.10",
"@vitest/coverage-v8": "^2.0.0",
"socket.io-client": "^4.6.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-loader": "^9.4.3",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.3",
"unplugin-swc": "^1.5.1",
"vitest": "^2.0.0"
}
}