-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.77 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.77 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
{
"name": "routista.antigravity",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"prebuild": "npm audit --audit-level=high && npm run lint && ([ -n \"$VERCEL\" ] || npm test)",
"build": "next build",
"start": "next start",
"lint": "eslint",
"export": "next build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"deploy": "npm run export && firebase deploy --only hosting"
},
"dependencies": {
"@radix-ui/react-slot": "^1.2.4",
"@sentry/nextjs": "^10.31.0",
"@types/qrcode": "^1.5.6",
"@upstash/redis": "^1.35.8",
"@vercel/analytics": "^1.5.0",
"@vercel/speed-insights": "^1.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"leaflet-image": "^0.4.0",
"lucide-react": "^0.554.0",
"next": "^16.2.6",
"next-intl": "^4.5.5",
"next-themes": "^0.4.6",
"posthog-js": "^1.313.0",
"qrcode": "^1.5.4",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-leaflet": "^5.0.0",
"sharp": "^0.34.5",
"tailwind-merge": "^3.4.0",
"xmlbuilder2": "^4.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/geojson": "^7946.0.16",
"@types/leaflet": "^1.9.21",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitest/coverage-v8": "^4.0.16",
"babel-plugin-react-compiler": "1.0.0",
"dotenv": "^17.2.3",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"eslint-plugin-security": "^3.0.1",
"jsdom": "^27.4.0",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.13"
}
}