75 lines
2.3 KiB
JSON
75 lines
2.3 KiB
JSON
{
|
|
"name": "photography-admin",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc && vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
"lint:fix": "eslint . --ext ts,tsx --fix",
|
|
"type-check": "tsc --noEmit",
|
|
"format": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
|
|
"format:fix": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,md}\"",
|
|
"test": "echo \"No tests specified\" && exit 0",
|
|
"prepare": "cd .. && husky install admin/.husky",
|
|
"pre-commit": "lint-staged"
|
|
},
|
|
"packageManager": "bun@latest",
|
|
"dependencies": {
|
|
"@radix-ui/react-avatar": "^1.1.10",
|
|
"@radix-ui/react-checkbox": "^1.3.2",
|
|
"@radix-ui/react-dialog": "^1.0.5",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
"@radix-ui/react-progress": "^1.1.7",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@radix-ui/react-separator": "^1.1.7",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@radix-ui/react-switch": "^1.0.3",
|
|
"@radix-ui/react-tabs": "^1.0.4",
|
|
"@radix-ui/react-toast": "^1.1.5",
|
|
"@tanstack/react-query": "^5.17.19",
|
|
"@tanstack/react-query-devtools": "^5.17.21",
|
|
"axios": "^1.6.5",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.1.0",
|
|
"lucide-react": "^0.312.0",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.48.2",
|
|
"react-router-dom": "^6.20.1",
|
|
"sonner": "^2.0.6",
|
|
"tailwind-merge": "^2.2.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.2.43",
|
|
"@types/react-dom": "^18.2.17",
|
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
"@typescript-eslint/parser": "^6.14.0",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"autoprefixer": "^10.4.16",
|
|
"eslint": "^8.55.0",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.5",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^15.2.0",
|
|
"postcss": "^8.4.32",
|
|
"prettier": "^3.1.1",
|
|
"tailwindcss": "^3.4.0",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.0.8"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,tsx,js,jsx}": [
|
|
"eslint --fix",
|
|
"prettier --write"
|
|
],
|
|
"*.{json,css,md}": [
|
|
"prettier --write"
|
|
]
|
|
}
|
|
} |