init create-fias

This commit is contained in:
Samandar Turgunboyev
2025-10-15 17:45:07 +05:00
commit edf364b389
54 changed files with 6664 additions and 0 deletions

58
package.json Normal file
View File

@@ -0,0 +1,58 @@
{
"name": "travel-admin",
"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": {
"@radix-ui/react-dropdown-menu": "^2.1.15",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/vite": "^4.1.7",
"@tanstack/react-query": "^5.77.1",
"axios": "^1.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.18",
"i18next": "^25.5.2",
"i18next-browser-languagedetector": "^8.2.0",
"lucide-react": "^0.544.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-github-btn": "^1.4.0",
"react-i18next": "^15.7.3",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.13"
},
"devDependencies": {
"@eslint/js": "^9.25.0",
"@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.2.1",
"prettier": "^3.6.2",
"tw-animate-css": "^1.4.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.1.7",
"vite-tsconfig-paths": "^5.1.4"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"prettier --write",
"eslint src --fix"
]
}
}