A very performant and light (2mb in memory) link shortener and tracker. Written in Rust and React and uses Postgres/SQLite.
1{ 2 "name": "frontend", 3 "private": true, 4 "version": "0.0.0", 5 "type": "module", 6 "scripts": { 7 "dev": "vite", 8 "build": "tsc -b && vite build", 9 "lint": "eslint .", 10 "preview": "vite preview" 11 }, 12 "dependencies": { 13 "@emotion/react": "^11.14.0", 14 "@hookform/resolvers": "^3.10.0", 15 "@mantine/core": "^7.16.1", 16 "@mantine/form": "^7.16.1", 17 "@mantine/hooks": "^7.16.1", 18 "@radix-ui/react-dialog": "^1.1.5", 19 "@radix-ui/react-dropdown-menu": "^2.1.5", 20 "@radix-ui/react-label": "^2.1.1", 21 "@radix-ui/react-slot": "^1.1.1", 22 "@radix-ui/react-tabs": "^1.1.2", 23 "@radix-ui/react-toast": "^1.2.5", 24 "@tailwindcss/vite": "^4.0.0", 25 "axios": "^1.7.9", 26 "class-variance-authority": "^0.7.1", 27 "clsx": "^2.1.1", 28 "lucide-react": "^0.474.0", 29 "react": "^18.3.1", 30 "react-dom": "^18.3.1", 31 "react-hook-form": "^7.54.2", 32 "tailwind-merge": "^2.6.0", 33 "tailwindcss-animate": "^1.0.7", 34 "zod": "^3.24.1" 35 }, 36 "devDependencies": { 37 "@eslint/js": "^9.17.0", 38 "@tailwindcss/postcss": "^4.0.0", 39 "@types/node": "^22.10.10", 40 "@types/react": "^18.3.18", 41 "@types/react-dom": "^18.3.5", 42 "@vitejs/plugin-react": "^4.3.4", 43 "eslint": "^9.17.0", 44 "eslint-plugin-react-hooks": "^5.0.0", 45 "eslint-plugin-react-refresh": "^0.4.16", 46 "globals": "^15.14.0", 47 "postcss": "^8.5.1", 48 "tailwindcss": "^4.0.0", 49 "typescript": "~5.6.2", 50 "typescript-eslint": "^8.18.2", 51 "vite": "^6.0.5" 52 } 53}