fix packages issue
Build & Deploy / Build & Push Docker Image (push) Failing after 22s
Build & Deploy / Deploy to VPS (push) Has been skipped
Test / Type Check (all packages) (push) Failing after 9m36s
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 22:55:24 -04:00
parent a48285ecc5
commit 59b58d02ea
9 changed files with 6521 additions and 1007 deletions
+5 -1
View File
@@ -18,13 +18,17 @@
"@rentaldrivego/types": "*",
"autoprefixer": "^10.4.19",
"dayjs": "^1.11.11",
"firebase-admin": "^10.3.0",
"lucide-react": "^0.376.0",
"next": "^16.2.7",
"next": "^16.2.9",
"node-cron": "4.5.0",
"nodemailer": "9.0.1",
"postcss": "^8.4.38",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"recharts": "^2.12.7",
"tailwindcss": "^3.4.3",
"turbo": "2.10.0",
"zod": "^3.23.0"
},
"devDependencies": {
+5 -3
View File
@@ -31,14 +31,15 @@
"dayjs": "^1.11.11",
"express": "^4.19.2",
"express-rate-limit": "^8.5.1",
"firebase-admin": "^12.1.0",
"firebase-admin": "^10.3.0",
"helmet": "^7.1.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^2.1.1",
"node-cron": "^3.0.3",
"nodemailer": "^8.0.10",
"next": "16.2.9",
"node-cron": "^4.5.0",
"nodemailer": "^9.0.1",
"otplib": "^12.0.1",
"qrcode": "^1.5.3",
"react": "^18.3.1",
@@ -46,6 +47,7 @@
"resend": "^3.2.0",
"socket.io": "^4.7.5",
"swagger-ui-express": "^5.0.1",
"turbo": "2.10.0",
"twilio": "^5.1.0",
"zod": "^3.23.0",
"zod-to-json-schema": "^3.25.2"
+5 -1
View File
@@ -20,8 +20,11 @@
"@rentaldrivego/types": "*",
"autoprefixer": "^10.4.19",
"dayjs": "^1.11.11",
"firebase-admin": "^10.3.0",
"lucide-react": "^0.376.0",
"next": "^16.2.7",
"next": "^16.2.9",
"node-cron": "4.5.0",
"nodemailer": "9.0.1",
"postcss": "^8.4.38",
"react": "^19.2.0",
"react-dom": "^19.2.0",
@@ -29,6 +32,7 @@
"sharp": "^0.34.5",
"socket.io-client": "^4.7.5",
"tailwindcss": "^3.4.3",
"turbo": "2.10.0",
"zod": "^3.23.0"
},
"devDependencies": {
+5 -1
View File
@@ -16,9 +16,13 @@
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"@fontsource-variable/noto-sans-arabic": "^5.2.10",
"next": "^16.2.7",
"firebase-admin": "^10.3.0",
"next": "^16.2.9",
"node-cron": "4.5.0",
"nodemailer": "9.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"turbo": "2.10.0",
"zod": "^4.4.0"
},
"devDependencies": {
+13 -13
View File
@@ -20,27 +20,27 @@ export interface PricingCommercialConfig {
* included limits, onboarding policy, taxes, and annual billing terms.
*/
export const pricingCommercialConfig: PricingCommercialConfig = {
currency: 'USD',
currency: 'MAD',
annualDiscountPercent: null,
publicPricesApproved: false,
monthlyPrices: {
launch: {
small: null,
growing: null,
scale: null,
enterprise: null,
small: 50,
growing: 50,
scale: 50,
enterprise: 50,
},
growth: {
small: null,
growing: null,
scale: null,
enterprise: null,
small: 200,
growing: 200,
scale: 200,
enterprise: 200,
},
enterprise: {
small: null,
growing: null,
scale: null,
enterprise: null,
small: 500,
growing: 500,
scale: 500,
enterprise: 500,
},
},
recommendedPlanByFleetBand: {
+6 -2
View File
@@ -17,12 +17,16 @@
"dependencies": {
"@rentaldrivego/types": "*",
"autoprefixer": "^10.4.19",
"firebase-admin": "^10.3.0",
"lucide-react": "^0.376.0",
"next": "^16.2.7",
"next": "^16.2.9",
"node-cron": "4.5.0",
"nodemailer": "9.0.1",
"postcss": "^8.4.38",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^3.4.3"
"tailwindcss": "^3.4.3",
"turbo": "2.10.0"
},
"devDependencies": {
"@types/node": "^20.12.0",