-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.88 KB
/
Copy pathpackage.json
File metadata and controls
97 lines (97 loc) · 2.88 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
96
97
{
"name": "rivers-run",
"private": true,
"version": "5.0.1",
"type": "module",
"workspaces": [
"api",
"api-flow"
],
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"postbuild": "node build-tools/generate_ota.js",
"lint": "tsc -b && eslint . && npm run lint:duplication",
"lint:duplication": "jscpd src",
"preview": "vite preview",
"test": "vitest run",
"test:rules": "npx firebase-tools emulators:exec --only firestore \"node --experimental-vm-modules node_modules/jest/bin/jest.js\"",
"screenshots": "playwright test"
},
"dependencies": {
"@capacitor-community/in-app-review": "^8.0.0",
"@capacitor-community/keep-awake": "^8.0.1",
"@capacitor-firebase/analytics": "^8.3.0",
"@capacitor-firebase/authentication": "^8.3.0",
"@capacitor/app": "^8.1.0",
"@capacitor/browser": "^8.0.3",
"@capacitor/core": "^8.4.0",
"@capacitor/filesystem": "^8.1.2",
"@capacitor/geolocation": "^8.2.0",
"@capacitor/keyboard": "^8.0.5",
"@capacitor/preferences": "^8.0.1",
"@capacitor/splash-screen": "^8.0.1",
"@capgo/capacitor-updater": "^8.49.4",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/dompurify": "^3.2.0",
"dompurify": "^3.4.0",
"firebase": "^12.12.0",
"i18next": "^26.3.1",
"i18next-browser-languagedetector": "^8.2.1",
"maplibre-gl": "^5.23.0",
"pmtiles": "^4.4.1",
"rc-slider": "^11.1.9",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-i18next": "^17.0.8",
"react-is": "^19.2.5",
"react-map-gl": "^8.1.1",
"react-quill-new": "^3.8.3",
"react-router-dom": "^7.14.1",
"recharts": "^3.8.1",
"valhalla-wasm": "^0.1.0",
"zod": "3.25.76"
},
"devDependencies": {
"@aws-sdk/client-s3": "^3.1039.0",
"@capacitor/android": "^8.4.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^8.4.0",
"@capacitor/ios": "^8.4.0",
"@cloudflare/vite-plugin": "^1.32.3",
"@cloudflare/workers-types": "^4.20260416.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.59.1",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"archiver": "^7.0.1",
"dotenv": "^17.4.2",
"eslint": "^10.2.0",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.2",
"eslint-plugin-sonarjs": "^4.0.2",
"globals": "^17.5.0",
"happy-dom": "^20.10.6",
"jscpd": "^4.0.9",
"jsdom": "^29.1.1",
"prettier": "^3.8.3",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.16",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.1.4",
"wrangler": "^4.102.0"
},
"browserslist": [
"ios_saf >= 15",
"last 2 versions",
"> 1%",
"not dead",
"not op_mini all"
]
}