-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.64 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
{
"name": "forage-for-all",
"version": "0.1.5",
"description": "Open-source app for mapping fruit trees and edible plants on public land.",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/techempower-org/forageforall.git"
},
"private": true,
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"schema:push": "npx instant-cli@latest push-schema",
"perms:push": "npx instant-cli@latest push-perms",
"seed:species": "tsx scripts/seed-species.ts",
"seed:listings": "tsx scripts/seed-listings.ts",
"sync:listings": "tsx scripts/sync-listings.ts",
"postinstall": "mkdir -p node_modules/ajv-keywords/node_modules && cp -R node_modules/schema-utils/node_modules/ajv node_modules/ajv-keywords/node_modules/ajv 2>/dev/null || true"
},
"dependencies": {
"@expo/metro-runtime": "~3.2.3",
"@expo/vector-icons": "^14.0.2",
"@googlemaps/markerclusterer": "^2.6.2",
"@instantdb/react": "^1.0.17",
"@instantdb/react-native": "^0.17.0",
"@react-google-maps/api": "^2.20.8",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/netinfo": "11.3.1",
"@react-navigation/native": "^6.1.18",
"expo": "~51.0.28",
"expo-build-properties": "~0.12.5",
"expo-camera": "~15.0.16",
"expo-constants": "~16.0.2",
"expo-font": "~12.0.10",
"expo-image": "~1.13.0",
"expo-image-picker": "~15.1.0",
"expo-linking": "~6.3.1",
"expo-location": "~17.0.1",
"expo-router": "~3.5.23",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"ngeohash": "^0.6.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-gesture-handler": "~2.16.1",
"react-native-get-random-values": "~1.11.0",
"react-native-map-clustering": "^3.4.2",
"react-native-maps": "1.14.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-web": "~0.19.10"
},
"overrides": {
"ajv-keywords": {
"ajv": "^8.12.0"
}
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@instantdb/admin": "^1.0.15",
"@types/ngeohash": "^0.6.8",
"@types/react": "~18.2.79",
"eslint": "^8.57.1",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.2",
"prettier": "^3.8.3",
"tsx": "^4.19.0",
"typescript": "~5.3.3"
}
}