-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.93 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.93 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
{
"name": "localsource",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"docker:dev": "docker-compose -f docker-compose.dev.yml up",
"docker:dev:build": "docker-compose -f docker-compose.dev.yml up --build",
"docker:dev:down": "docker-compose -f docker-compose.dev.yml down",
"docker:clean": "docker-compose -f docker-compose.dev.yml down --volumes --remove-orphans"
},
"dependencies": {
"@hookform/resolvers": "^5.0.1",
"@playwright/test": "^1.51.1",
"@radix-ui/react-label": "^2.1.3",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-toast": "^1.2.7",
"@supabase/auth-ui-react": "^0.4.7",
"@types/leaflet": "^1.9.17",
"@types/react": "^18.2.64",
"@types/react-router-dom": "^5.3.3",
"glob": "^9.3.5",
"leaflet": "^1.9.4",
"lru-cache": "^10.4.3",
"lucide-react": "^0.487.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.3.8",
"react-hook-form": "^7.55.0",
"react-leaflet": "^4.2.1",
"react-leaflet-cluster": "^2.1.0",
"react-router-dom": "^6.30.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@supabase/supabase-js": "^2.49.4",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/lodash": "^4.17.16",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"@vitest/coverage-v8": "^1.6.1",
"autoprefixer": "^10.4.17",
"axios": "^1.8.4",
"cheerio": "^1.0.0",
"dotenv": "^16.5.0",
"jsdom": "^24.0.0",
"postcss": "^8.4.35",
"puppeteer": "^24.6.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.1.4",
"vite-plugin-pwa": "^1.0.0",
"vitest": "^1.3.1"
}
}