-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "project_ara",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:api\" \"npm run dev:vite\"",
"dev:api": "tsx watch server/api-server.ts",
"dev:vite": "vite",
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"generate-types": "npx supabase gen types typescript --project-id lsjozpktmapfqxqyaarw --schema public > types_db.ts"
},
"dependencies": {
"@google-analytics/data": "^5.2.1",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.10",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-separator": "^1.1.7",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-tooltip": "^1.2.8",
"@supabase/supabase-js": "^2.57.4",
"bcryptjs": "^3.0.3",
"browser-image-compression": "^2.0.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"dompurify": "^3.3.0",
"framer-motion": "^12.23.24",
"i18next": "^25.7.2",
"i18next-browser-languagedetector": "^8.2.0",
"leo-profanity": "^1.8.0",
"lucide-react": "^0.544.0",
"next-themes": "^0.4.6",
"quill": "^2.0.3",
"react": "^18.3.1",
"react-country-flag": "^3.1.0",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-helmet-async": "^2.0.5",
"react-i18next": "^16.4.1",
"react-infinite-scroll-component": "^6.1.0",
"react-player": "^2.16.1",
"react-quill": "^2.0.0",
"react-router-dom": "^7.9.1",
"react-select": "^5.10.2",
"react-simple-maps": "^3.0.0",
"recharts": "^3.6.0",
"sonner": "^2.0.7",
"supabase": "^2.45.5",
"swiper": "^10.3.1",
"tailwind-merge": "^3.3.1",
"tailwindcss-animate": "^1.0.7",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^24.9.1",
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@types/react-infinite-scroll-component": "^4.2.5",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vercel/node": "^5.5.16",
"@vitejs/plugin-react": "^5.0.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.2.1",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.20",
"express": "^5.2.1",
"globals": "^16.3.0",
"postcss": "^8.4.38",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.10",
"tsx": "^4.21.0",
"typescript": "~5.8.3",
"vercel": "^50.1.3",
"vite": "^7.1.2"
}
}