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 "recharts": "^2.15.0",
33 "tailwind-merge": "^2.6.0",
34 "tailwindcss-animate": "^1.0.7",
35 "zod": "^3.24.1"
36 },
37 "devDependencies": {
38 "@eslint/js": "^9.17.0",
39 "@tailwindcss/postcss": "^4.0.0",
40 "@types/node": "^22.10.10",
41 "@types/react": "^18.3.18",
42 "@types/react-dom": "^18.3.5",
43 "@vitejs/plugin-react": "^4.3.4",
44 "eslint": "^9.17.0",
45 "eslint-plugin-react-hooks": "^5.0.0",
46 "eslint-plugin-react-refresh": "^0.4.16",
47 "globals": "^15.14.0",
48 "postcss": "^8.5.1",
49 "tailwindcss": "^4.0.0",
50 "typescript": "~5.6.2",
51 "typescript-eslint": "^8.18.2",
52 "vite": "^6.0.5"
53 }
54}