Massive Dependency Modernization Project
Some checks failed
Deploy to Test Environment / deploy-to-test (push) Failing after 3m58s

This commit is contained in:
2026-02-13 00:34:22 -08:00
parent 379b8bf532
commit 2d2cd52011
87 changed files with 26916 additions and 8620 deletions

View File

@@ -3,6 +3,9 @@
"private": true,
"version": "0.14.1",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "concurrently \"npm:start:dev\" \"vite\"",
"dev:container": "concurrently \"npm:start:dev\" \"vite --host\"",
@@ -24,14 +27,17 @@
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"type-check": "tsc --noEmit",
"validate": "(prettier --check . || true) && npm run type-check && (npm run lint || true)",
"clean": "rimraf coverage .coverage",
"clean": "node scripts/clean.mjs",
"start:dev": "NODE_ENV=development tsx watch server.ts",
"start:prod": "NODE_ENV=production tsx server.ts",
"start:test": "NODE_ENV=test NODE_V8_COVERAGE=.coverage/tmp/integration-server tsx server.ts",
"db:reset:dev": "NODE_ENV=development tsx src/db/seed.ts",
"db:reset:test": "NODE_ENV=test tsx src/db/seed.ts",
"worker:prod": "NODE_ENV=production tsx src/services/queueService.server.ts",
"prepare": "node -e \"try { require.resolve('husky') } catch (e) { process.exit(0) }\" && husky || true"
"prepare": "node -e \"try { require.resolve('husky') } catch (e) { process.exit(0) }\" && husky || true",
"tsoa:spec": "tsoa spec",
"tsoa:routes": "tsoa routes",
"tsoa:build": "tsoa spec-and-routes"
},
"dependencies": {
"@bull-board/api": "^6.14.2",
@@ -74,8 +80,8 @@
"react-router-dom": "^7.9.6",
"recharts": "^3.4.1",
"sharp": "^0.34.5",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tsoa": "^6.6.0",
"tsx": "^4.20.6",
"zod": "^4.2.1",
"zxcvbn": "^4.4.2",
@@ -110,7 +116,6 @@
"@types/react-dom": "^19.2.3",
"@types/sharp": "^0.31.1",
"@types/supertest": "^6.0.3",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"@types/ws": "^8.18.1",
"@types/zxcvbn": "^4.4.5",
@@ -139,7 +144,6 @@
"pino-pretty": "^13.1.3",
"postcss": "^8.5.6",
"prettier": "^3.3.2",
"rimraf": "^6.1.2",
"supertest": "^7.1.4",
"tailwindcss": "^4.1.17",
"testcontainers": "^11.8.1",