-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.79 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
{
"name": "activity-trends",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"ingest": "tsx scripts/ingest/index.ts",
"db:types": "supabase gen types typescript --local > lib/supabase/database.types.ts"
},
"dependencies": {
"@supabase/ssr": "^0.12.0",
"@supabase/supabase-js": "^2.45.4",
"@tanstack/react-query": "^5.59.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"lucide-react": "^0.577.0",
"maplibre-gl": "^4.7.1",
"motion": "^11.11.1",
"next": "^15.0.0",
"next-themes": "^0.4.4",
"radix-ui": "^1.6.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-map-gl": "^7.1.7",
"recharts": "^3.8.0",
"tailwind-merge": "^2.5.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/compat": "^2.1.0",
"@tailwindcss/postcss": "^4.0.0",
"@tanstack/react-query-devtools": "^5.59.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/node": "^22.7.4",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.0",
"eslint": "^10.0.0",
"eslint-config-next": "^16.2.9",
"jsdom": "^29.0.0",
"saxes": "^6.0.0",
"supabase": "^1.200.3",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.1",
"tw-animate-css": "^1.0.0",
"typescript": "^5.6.2",
"vitest": "^4.1.9"
}
}