-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.96 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.96 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
{
"name": "wg-field-validator",
"version": "1.0.0",
"description": "Offline-first field validation PWA for Western Ghats LULC and CoreStack datasets",
"repository": "github:tkkr6895/fields",
"homepage": "https://github.com/tkkr6895/fields#readme",
"type": "module",
"scripts": {
"dev": "vite",
"dev:dw-proxy": "node server/dynamicworld-proxy.mjs",
"dev:full": "concurrently -k -n VITE,DW -c cyan,magenta \"vite\" \"node server/dynamicworld-proxy.mjs\"",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare-data": "node scripts/prepare-datasets.js",
"android:init": "npx cap add android",
"android:sync": "npx cap sync android",
"android:open": "npx cap open android",
"android:build": "npm run build && npx cap sync android",
"android:run": "npx cap run android"
},
"dependencies": {
"@capacitor/android": "^8.0.0",
"@capacitor/camera": "^8.0.0",
"@capacitor/cli": "^8.0.0",
"@capacitor/core": "^8.0.0",
"@capacitor/filesystem": "^8.0.0",
"@capacitor/geolocation": "^8.0.0",
"@capacitor/network": "^8.0.1",
"@capacitor/share": "^8.0.0",
"@google/earthengine": "^1.7.16",
"@tmcw/togeojson": "^7.1.2",
"@turf/turf": "^6.5.0",
"@types/file-saver": "^2.0.7",
"cors": "^2.8.5",
"dexie": "^4.0.0",
"dexie-react-hooks": "^1.1.7",
"dotenv": "^17.2.3",
"exifr": "^7.1.3",
"express": "^5.2.1",
"file-saver": "^2.0.5",
"jszip": "^3.10.1",
"maplibre-gl": "^4.1.0",
"papaparse": "^5.4.1",
"pmtiles": "^3.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sql.js": "^1.14.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/papaparse": "^5.3.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.0",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^9.2.1",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-pwa": "^0.19.0",
"workbox-window": "^7.0.0"
}
}