update packages
Build & Deploy / Build & Push Docker Image (push) Failing after 7s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / Type Check (all packages) (push) Failing after 10s
Test / API Unit Tests (push) Has been skipped
Test / Homepage Unit Tests (push) Has been skipped
Test / Storefront Unit Tests (push) Has been skipped
Test / Admin Unit Tests (push) Has been skipped
Test / Dashboard Unit Tests (push) Has been skipped
Test / API Integration Tests (push) Has been skipped

This commit is contained in:
root
2026-06-27 03:16:24 -04:00
parent 7392b094e0
commit a48285ecc5
7 changed files with 1424 additions and 1680 deletions
+1 -1
View File
@@ -32,6 +32,6 @@
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
"vitest": "^2.1.0"
}
}
+3 -3
View File
@@ -61,13 +61,13 @@
"@types/node-cron": "^3.0.11",
"@types/nodemailer": "^6.4.17",
"@types/qrcode": "^1.5.5",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.8",
"supertest": "^7.0.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
"vitest": "^2.1.0"
}
}
+1 -1
View File
@@ -36,6 +36,6 @@
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
"vitest": "^2.1.0"
}
}
+1 -1
View File
@@ -40,6 +40,6 @@
"prettier": "^3.8.0",
"typescript": "^5.4.0",
"typescript-eslint": "^8.0.0",
"vitest": "^4.1.0"
"vitest": "^2.1.0"
}
}
+17 -5
View File
@@ -1,9 +1,13 @@
{
"compilerOptions": {
"target": "ES2024",
"lib": ["dom", "dom.iterable", "es2024"],
"lib": [
"dom",
"dom.iterable",
"es2024"
],
"allowJs": false,
"skipLibCheck": false,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
@@ -25,9 +29,14 @@
"useUnknownInCatchVariables": true,
"forceConsistentCasingInFileNames": true,
"verbatimModuleSyntax": true,
"types": ["vitest/globals", "@testing-library/jest-dom/vitest"],
"types": [
"vitest/globals",
"@testing-library/jest-dom/vitest"
],
"paths": {
"@/*": ["./src/*"]
"@/*": [
"./src/*"
]
}
},
"include": [
@@ -43,5 +52,8 @@
"vitest.integration.config.ts",
".next/dev/types/**/*.ts"
],
"exclude": ["node_modules", "contracts"]
"exclude": [
"node_modules",
"contracts"
]
}
+1 -1
View File
@@ -29,6 +29,6 @@
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"typescript": "^5.4.0",
"vitest": "^4.1.0"
"vitest": "^2.1.0"
}
}