-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.87 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.87 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
{
"name": "beta-rocks",
"private": true,
"version": "0.6.0",
"workspaces": [
"mobile"
],
"scripts": {
"dev": "next dev",
"dev:webpack": "next dev --webpack",
"build": "next build",
"build:webpack": "next build --webpack",
"start": "next start",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md,css}\"",
"type-check": "tsc --noEmit",
"db:types": "supabase gen types typescript --project-id tgvcjhzjdyfloppunnna > src/integrations/supabase/types.ts",
"import:osm": "tsx scripts/import-osm-crags.ts",
"enrich:countries": "tsx scripts/enrich-countries.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@modelcontextprotocol/node": "2.0.0-alpha.2",
"@modelcontextprotocol/sdk": "1.29.0",
"@radix-ui/react-accordion": "1.2.12",
"@radix-ui/react-alert-dialog": "1.1.15",
"@radix-ui/react-avatar": "1.1.10",
"@radix-ui/react-checkbox": "1.3.3",
"@radix-ui/react-dialog": "1.1.15",
"@radix-ui/react-dropdown-menu": "2.1.16",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "1.1.15",
"@radix-ui/react-radio-group": "1.3.8",
"@radix-ui/react-scroll-area": "1.2.10",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-separator": "1.1.7",
"@radix-ui/react-slider": "^1.3.6",
"@radix-ui/react-slot": "1.2.3",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-toast": "1.2.15",
"@supabase/supabase-js": "2.76.1",
"@tanstack/react-query": "5.90.5",
"@tanstack/react-query-devtools": "5.90.2",
"@types/leaflet": "1.9.21",
"ai": "^6.0.141",
"browser-image-compression": "2.0.2",
"class-variance-authority": "0.7.1",
"clsx": "2.1.1",
"cmdk": "1.1.1",
"date-fns": "4.1.0",
"dotenv": "17.2.3",
"i18n-iso-countries": "7.14.0",
"i18next": "25.6.0",
"leaflet": "1.9.4",
"lucide-react": "0.546.0",
"next": "16.0.10",
"next-themes": "0.4.6",
"qrcode.react": "^4.2.0",
"react": "19.2.1",
"react-day-picker": "9.11.1",
"react-dom": "19.2.1",
"react-i18next": "16.1.6",
"react-leaflet": "5.0.0",
"resend": "6.3.0",
"tailwind-merge": "3.3.1",
"tw-animate-css": "1.4.0",
"uuid": "13.0.0",
"zod": "4.1.12"
},
"devDependencies": {
"@eslint/js": "9.38.0",
"@tailwindcss/postcss": "4.1.16",
"@tailwindcss/typography": "0.5.19",
"@types/node": "24.9.1",
"@types/react": "19.2.2",
"@types/react-dom": "19.2.2",
"@types/uuid": "10.0.0",
"eslint": "9.38.0",
"eslint-config-next": "16.0.0",
"eslint-plugin-react-hooks": "7.0.0",
"globals": "16.4.0",
"postcss": "8.5.6",
"prettier": "3.6.2",
"tailwindcss": "4.1.16",
"tsx": "4.20.6",
"typescript": "5.9.3",
"typescript-eslint": "8.46.2"
}
}