Files
hamed 20c8eaaad9 feat: add TourProgressController and related entities for user tour progress tracking
- Implemented TourProgressController to handle API endpoints for tracking guided tours seen by users.
- Created UserTourProgress entity to store the highest version of tours seen by each user.
- Developed UserTourProgressRepository for database interactions related to user tour progress.
- Introduced TourProgressService to manage business logic for marking tours as seen and retrieving seen maps.
- Added comprehensive tests for API endpoints and entity behavior to ensure functionality and data integrity.
2026-08-10 09:34:14 +03:30

75 lines
2.4 KiB
JSON

{
"overrides": {
"lodash": "^4.17.21",
"lodash-es": "^4.18.1"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@csstools/postcss-oklab-function": "^5.0.6",
"@hotwired/stimulus": "^3.0.0",
"@symfony/stimulus-bridge": "^3.2.0 || ^4.0.0",
"@symfony/ux-react": "file:vendor/symfony/ux-react/assets",
"@symfony/webpack-encore": "^6.0.0",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4",
"core-js": "^3.38.0",
"jsdom": "^29.1.1",
"postcss": "^8.0.0",
"postcss-loader": "^8.0.0",
"regenerator-runtime": "^0.13.9",
"tailwindcss": "^4.0.0",
"ts-loader": "^9.6.0",
"typescript": "^5.0.0",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^2",
"webpack": "^5.72",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"@ckeditor/ckeditor5-react": "^11.2.0",
"@fontsource/vazirmatn": "^5.2.8",
"@heroicons/react": "^2.0.0",
"@hookform/resolvers": "^5.4.0",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-table": "^8.0.0",
"@types/leaflet": "^1.9.21",
"altcha": "^3.2.0",
"ckeditor5": "^48.4.0",
"driver.js": "^1.8.0",
"jalaali-js": "^1.2.8",
"leaflet": "^1.9.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-easy-crop": "^6.1.0",
"react-hook-form": "^7.0.0",
"react-hot-toast": "^2.0.0",
"react-leaflet": "^5.0.0",
"react-router": "^8.3.0",
"react-select": "^5.0.0",
"recharts": "^3.8.1",
"sonner": "^1.0.0",
"zod": "^3.0.0",
"zustand": "^5.0.0"
},
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev-server": "encore dev-server",
"dev": "encore dev",
"watch": "encore dev --watch",
"build": "encore production --progress",
"test": "vitest run",
"test:watch": "vitest",
"test:cov": "vitest run --coverage"
}
}