-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.72 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.72 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "otm-app",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "expo start",
"start:clean": "expo start -c",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"build:web": "expo export:web",
"build:android": "eas build --platform android",
"build:ios": "eas build --platform ios",
"clean": "rm -rf node_modules && yarn cache clean && yarn install"
},
"dependencies": {
"@expo/metro-runtime": "~5.0.4",
"@expo/webpack-config": "^19.0.1",
"@maplibre/maplibre-react-native": "^10.1.6",
"@react-native-async-storage/async-storage": "2.1.2",
"@react-native-google-signin/google-signin": "^14.0.1",
"@react-navigation/bottom-tabs": "^7.3.10",
"@react-navigation/native": "^7.1.6",
"@react-navigation/native-stack": "^7.3.10",
"@rneui/base": "4.0.0-rc.7",
"@rneui/themed": "4.0.0-rc.8",
"@scure/bip39": "^1.6.0",
"@supabase/supabase-js": "^2.50.0",
"@tanstack/react-query": "^5.80.7",
"@tensorflow/tfjs": "^4.22.0",
"@tensorflow/tfjs-react-native": "^1.0.0",
"@types/supercluster": "^7.1.3",
"buffer": "^6.0.3",
"clsx": "^2.1.1",
"ethers": "^6.15.0",
"exifr": "^7.1.3",
"expo": "~53.0.20",
"expo-asset": "~11.1.7",
"expo-build-properties": "^0.14.6",
"expo-camera": "^16.1.11",
"expo-clipboard": "~7.1.5",
"expo-constants": "^17.1.7",
"expo-crypto": "^14.1.5",
"expo-dev-client": "^5.2.4",
"expo-file-system": "~18.1.11",
"expo-gl": "^15.1.7",
"expo-image-manipulator": "^13.1.7",
"expo-image-picker": "^16.1.4",
"expo-linking": "~7.1.7",
"expo-router": "^5.1.4",
"expo-secure-store": "^14.2.3",
"expo-sharing": "~13.1.5",
"expo-status-bar": "~2.2.3",
"expo-web-browser": "~14.2.0",
"heic2any": "^0.0.4",
"jpeg-js": "^0.4.4",
"maplibre-gl": "^5.6.1",
"nativewind": "^4.1.23",
"node-libs-expo": "^0.0.3",
"nsfwjs": "^4.2.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-dropzone": "^14.3.8",
"react-hot-toast": "^2.5.2",
"react-native": "0.79.5",
"react-native-fs": "^2.20.0",
"react-native-get-random-values": "^1.11.0",
"react-native-image-resizer": "^1.4.5",
"react-native-reanimated": "^3.17.5",
"react-native-safe-area-context": "^5.4.0",
"react-native-screens": "^4.11.1",
"react-native-toast-message": "^2.3.3",
"react-native-url-polyfill": "^2.0.0",
"react-native-web": "^0.20.0",
"react-native-webview": "^13.13.5",
"supercluster": "^8.0.1",
"tailwindcss": "3.3.2",
"zustand": "^5.0.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.24.1",
"@babel/plugin-transform-react-constant-elements": "^7.24.1",
"@babel/plugin-transform-react-inline-elements": "^7.24.1",
"@babel/plugin-transform-runtime": "^7.24.1",
"@babel/runtime": "^7.24.1",
"@types/jest": "^30.0.0",
"@types/piexifjs": "^1.0.0",
"@types/react": "~19.0.10",
"autoprefixer": "^10.4.21",
"babel-plugin-module-resolver": "^5.0.0",
"babel-plugin-react-native-web": "^0.20.0",
"babel-plugin-react-remove-properties": "^0.3.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"expo": "~53.0.20",
"metro-minify-terser": "^0.80.6",
"metro-react-native-babel-transformer": "^0.77.0",
"postcss": "^8.5.6",
"react-refresh": "^0.14.0",
"typescript": "~5.8.3"
},
"private": true,
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@rneui/base",
"@rneui/themed",
"react-native-fs"
],
"listUnknownPackages": false
}
}
}
}