refactor: remove unnecessary React import in AuthButton component due to new JSX transform refactor: simplify imports in LanguageSelector component fix: remove unused AuthResponse type import in useAuth hook fix: access Vite environment variables in a type-safe manner in api utility
34 lines
879 B
JSON
34 lines
879 B
JSON
{
|
|
"name": "@avanzacast/admin-panel",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "AvanzaCast - Admin Panel",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --port 3002",
|
|
"build": "vite build",
|
|
"preview": "vite preview --port 3002",
|
|
"typecheck": "tsc --noEmit",
|
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0"
|
|
},
|
|
"dependencies": {
|
|
"@ant-design/icons": "^5.2.6",
|
|
"antd": "^5.12.1",
|
|
"react": "^18.2.0",
|
|
"react-dom": "^18.2.0",
|
|
"react-router-dom": "^6.30.1",
|
|
"recharts": "^2.10.3",
|
|
"zustand": "^4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.0.28",
|
|
"@types/react-dom": "^18.0.11",
|
|
"@vitejs/plugin-react": "^4.0.3",
|
|
"autoprefixer": "^10.4.14",
|
|
"postcss": "^8.4.23",
|
|
"tailwindcss": "^4.1.0",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^4.3.9"
|
|
}
|
|
}
|