first commit

This commit is contained in:
Samandar Turgunboyev
2025-09-23 17:38:49 +05:00
commit a5baccf106
81 changed files with 11196 additions and 0 deletions

79
package.json Normal file
View File

@@ -0,0 +1,79 @@
{
"name": "panda-analytics",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint src --fix",
"preview": "vite preview",
"prettier": "prettier src --write",
"prepare": "husky"
},
"dependencies": {
"@hookform/resolvers": "^5.2.2",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tailwindcss/vite": "^4.1.7",
"@tanstack/react-query": "^5.77.1",
"apexcharts": "^5.3.5",
"axios": "^1.9.0",
"chart.js": "^4.5.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
"embla-carousel-react": "^8.6.0",
"i18next": "^25.2.1",
"i18next-browser-languagedetector": "^8.1.0",
"js-cookie": "^3.0.5",
"lucide-react": "^0.511.0",
"next-themes": "^0.4.6",
"react": "^19.1.0",
"react-apexcharts": "^1.7.0",
"react-chartjs-2": "^5.3.0",
"react-dom": "^19.1.0",
"react-github-btn": "^1.4.0",
"react-hook-form": "^7.62.0",
"react-i18next": "^15.5.2",
"react-router-dom": "^7.9.1",
"recharts": "^2.15.4",
"sonner": "^2.0.7",
"swiper": "^12.0.2",
"tailwind-merge": "^3.3.0",
"tailwindcss": "^4.1.7",
"zod": "^4.1.9"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@types/chart.js": "^2.9.41",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.15.21",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.4.1",
"eslint": "^9.25.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"prettier": "^3.5.3",
"tw-animate-css": "^1.3.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.30.1",
"vite": "^6.3.5",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint src --fix"
]
}
}