-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.42 KB
/
package.json
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": "confman",
"version": "0.8.0",
"main": "expo/AppEntry.js",
"scripts": {
"-----------------------------------START-----------------------------------": "",
"start": "cross-env EXPO_USE_FAST_RESOLVER=1 bun expo start",
"start:clear": "bun run start --clear",
"----------------------------------PREBUILD---------------------------------": "",
"prebuild:dev": "bun expo prebuild --clean",
"prebuild:production": "cross-env APP_VARIANT=production bun run prebuild:dev",
"-------------------------------BUILD ANDROID-------------------------------": "",
"android:debug": "bun expo run:android",
"android:debug:clean": "bun run android:debug --no-build-cache",
"android:release": "bun run android:debug --variant release --no-bundler",
"android:release:clean": "bun run android:release --no-build-cache",
"----------------------------------GRADLE-----------------------------------": "",
"gradle:clean": "cd android && ./gradlew clean && cd ..",
"gradle:debug:apk": "cd android && ./gradlew assembleDebug && cd ..",
"gradle:release:apk": "cd android && ./gradlew assembleRelease && cd ..",
"android": "expo run:android",
"ios": "expo run:ios",
"---------------------------------Utility-----------------------------------": "",
"android:dark": "adb shell \"cmd uimode night yes\"",
"android:light": "adb shell \"cmd uimode night no\""
},
"dependencies": {
"@legendapp/state": "^2.1.15",
"@react-navigation/bottom-tabs": "^7.0.0-rc.32",
"@react-navigation/native": "^7.0.0-rc.3",
"@react-navigation/native-stack": "^7.0.0-rc.4",
"@supabase/supabase-js": "^2.44.4",
"@tanstack/react-query": "^5.55.4",
"date-fns": "^3.6.0",
"expo": "~51.0.14",
"expo-dev-client": "~4.0.18",
"expo-image": "~1.12.15",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-system-ui": "~3.0.7",
"react": "18.2.0",
"react-native": "0.74.2",
"react-native-gesture-handler": "~2.16.1",
"react-native-mmkv": "^2.12.2",
"react-native-paper": "^5.12.5",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-unistyles": "^2.8.1",
"react-native-url-polyfill": "^2.0.0",
"sonner-native": "^0.13.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@biomejs/biome": "1.8.1",
"@types/react": "~18.2.45",
"supabase": "^1.192.5",
"typescript": "^5.1.3"
},
"private": true
}