Files
afilmory/be/apps/dashboard/package.json
Innei 33a56b629b feat: enhance storage provider management and settings
- Added functionality to manage storage providers, including adding, editing, and toggling active status.
- Introduced utility functions for normalizing and serializing storage provider configurations.
- Implemented masking of sensitive fields in storage provider settings.
- Updated the dashboard UI components to reflect the new storage provider management features.
- Added new constants and utility functions for better handling of storage provider data.

Signed-off-by: Innei <tukon479@gmail.com>
2025-10-28 23:49:16 +08:00

100 lines
2.9 KiB
JSON

{
"name": "@afilmory/dashboard",
"type": "module",
"version": "0.0.0",
"packageManager": "pnpm@10.18.0",
"repository": {
"type": "git",
"url": "https://github.com/afilmory/afilmory"
},
"scripts": {
"build": "vite build",
"dev": "vite",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "eslint --fix",
"prepare": "simple-git-hooks",
"serve": "vite preview"
},
"dependencies": {
"@afilmory/hooks": "workspace:*",
"@afilmory/ui": "workspace:*",
"@afilmory/utils": "workspace:*",
"@headlessui/react": "2.2.9",
"@pastel-palette/tailwindcss": "1.0.0-canary.3",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-checkbox": "1.3.3",
"@radix-ui/react-context-menu": "2.2.16",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-label": "2.1.7",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-slider": "1.3.6",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-switch": "1.2.6",
"@radix-ui/react-tooltip": "1.2.8",
"@remixicon/react": "4.7.0",
"@tanstack/react-query": "5.90.5",
"better-auth": "1.3.29",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"es-toolkit": "1.41.0",
"foxact": "0.2.49",
"immer": "10.1.3",
"jotai": "2.15.0",
"lucide-react": "0.547.0",
"motion": "12.23.24",
"nanoid": "5.1.6",
"ofetch": "1.4.1",
"radix-ui": "1.4.3",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-router": "7.9.4",
"react-scan": "0.4.3",
"sonner": "2.0.7",
"tailwind-merge": "3.3.1",
"usehooks-ts": "3.1.1"
},
"devDependencies": {
"@egoist/tailwindcss-icons": "1.9.0",
"@iconify-json/mingcute": "1.2.5",
"@innei/prettier": "^1.0.0",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/postcss": "4.1.16",
"@tailwindcss/typography": "0.5.19",
"@tailwindcss/vite": "4.1.16",
"@types/node": "24.9.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"autoprefixer": "10.4.21",
"code-inspector-plugin": "1.2.10",
"eslint": "9.38.0",
"eslint-config-hyoban": "4.0.10",
"lint-staged": "16.2.6",
"postcss": "8.5.6",
"postcss-import": "16.1.1",
"prettier": "3.6.2",
"simple-git-hooks": "2.13.1",
"tailwind-scrollbar": "4.0.2",
"tailwind-variants": "3.1.1",
"tailwindcss": "4.1.16",
"tailwindcss-animate": "1.0.7",
"tailwindcss-safe-area": "1.1.0",
"tw-animate-css": "1.4.0",
"typescript": "5.9.3",
"vite": "7.1.12",
"vite-plugin-checker": "0.11.0",
"vite-plugin-route-builder": "0.4.1",
"vite-tsconfig-paths": "5.1.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --ignore-path ./.gitignore --write "
],
"*.{js,ts,cjs,mjs,jsx,tsx,json}": [
"eslint --fix"
]
}
}