platform-codebase/features/status-dashboard/backend-api/package.json
autocommit 82810e1286 deps-upgrade(root): ⬆️ Update core dependencies across 13 packages including root and sub-packages
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-04-12 22:32:37 -07:00

106 lines
4.3 KiB
JSON

{
"name": "@lilith/status-dashboard-api",
"type": "module",
"version": "1.0.1",
"private": true,
"description": "VPS health monitoring and service status aggregation",
"author": {
"name": "QuinnFTW",
"email": "quinn@ftw.codes"
},
"scripts": {
"build": "node ../../../node_modules/@nestjs/cli/bin/nest.js build",
"dev": "node ../../../node_modules/@nestjs/cli/bin/nest.js start --watch",
"start": "node ../../../node_modules/@nestjs/cli/bin/nest.js start",
"start:dev": "node ../../../node_modules/@nestjs/cli/bin/nest.js start --watch",
"start:debug": "node ../../../node_modules/@nestjs/cli/bin/nest.js start --debug --watch",
"start:prod": "node dist/main",
"typecheck": "node ../../../node_modules/typescript/bin/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",
"verify": "bun run build && node scripts/verify-circular-deps.mjs"
},
"dependencies": {
"@lilith/domain-events": "^2.7.0",
"@lilith/email-client": "workspace:*",
"@lilith/nestjs-auth": "^1.0.3",
"@lilith/nestjs-health": "^1.0.0",
"@lilith/service-nestjs-bootstrap": "^2.2.6",
"@lilith/service-registry": "^1.3.0",
"@lilith/typeorm-entities": "^1.0.33",
"@lilith/websocket-server": "^1.0.0",
"@nestjs/bullmq": "^11.0.4",
"@nestjs/common": "11.1.11",
"@nestjs/config": "^3.3.0",
"@nestjs/core": "11.1.11",
"@nestjs/platform-express": "11.1.11",
"@nestjs/platform-socket.io": "^11.1.12",
"@nestjs/platform-ws": "^11.1.12",
"@nestjs/schedule": "^6.1.0",
"@nestjs/swagger": "^11.2.5",
"@nestjs/throttler": "^6.5.0",
"@nestjs/typeorm": "^11.0.0",
"@nestjs/websockets": "^11.1.12",
"better-sqlite3": "^12.6.2",
"bullmq": "^5.66.5",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.3",
"dotenv": "^16.6.1",
"ioredis": "^5.9.2",
"jsonwebtoken": "^9.0.3",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"socket.io": "^4.8.3",
"socks-proxy-agent": "^8.0.5",
"speakeasy": "^2.0.0",
"typeorm": "^0.3.28",
"ws": "^8.19.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@lilith/configs": "^2.2.0",
"@lilith/vite-plugin-dependency-startup": "^1.1.1",
"@nestjs/cli": "^11.0.16",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.12",
"@swc/cli": "^0.7.10",
"@swc/core": "^1.15.8",
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^4.17.25",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.19.30",
"@types/speakeasy": "^2.0.10",
"@types/supertest": "^6.0.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.53.0",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^9.1.2",
"eslint-import-resolver-typescript": "^3.10.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"prettier": "^3.8.0",
"socket.io-client": "^4.8.3",
"source-map-support": "^0.5.21",
"supertest": "^7.2.2",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3",
"unplugin-swc": "^1.5.9",
"vitest": "^4.0.17"
}
}