-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.16 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 3.16 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
{
"name": "language-dex",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "APP_VARIANT=development npm run prebuild-android && expo run:android",
"build-android": "npm run licenses && npm run prebuild-android && cd android && ./gradlew --stop && dotenv -e ../.env.build.local -- ./gradlew app:bundleRelease && echo bundle saved to android/app/build/outputs/bundle/release",
"build-android-apk": "npm run licenses && npm run prebuild-android && cd android && ./gradlew --stop && dotenv -e ../.env.build.local -- ./gradlew app:assembleRelease && echo bundle saved to android/app/build/outputs/apk/release",
"ios": "expo run:ios",
"web": "expo start --web",
"go": "expo start --go",
"test": "jest --watchAll",
"lint": "expo lint",
"prebuild-android": "rimraf android; expo prebuild -p android && tsx scripts/patch-gradle.ts",
"licenses": "license-ripper --config license-ripper-config.json --output -licenses.json --compress; tsx scripts/license-post-rip.ts"
},
"dependencies": {
"@akahuku/unistring": "^0.6.2",
"@expo/vector-icons": "^15.0.3",
"@gorhom/bottom-sheet": "^5.1.8",
"@rn-primitives/dropdown-menu": "^1.1.0",
"@rn-primitives/portal": "^1.1.0",
"@rn-primitives/types": "^1.1.0",
"expo": "^54.0.0",
"expo-asset": "~12.0.9",
"expo-audio": "~1.0.14",
"expo-build-properties": "~1.0.9",
"expo-clipboard": "~8.0.7",
"expo-constants": "~18.0.10",
"expo-document-picker": "~14.0.7",
"expo-file-system": "~19.0.17",
"expo-font": "~14.0.9",
"expo-haptics": "~15.0.7",
"expo-linking": "~8.0.8",
"expo-localization": "~17.0.7",
"expo-router": "~6.0.14",
"expo-sharing": "~14.0.7",
"expo-splash-screen": "~31.0.10",
"expo-sqlite": "~16.0.9",
"expo-status-bar": "~3.0.8",
"i18next": "*",
"react": "19.1.0",
"react-i18next": "^15.4.0",
"react-native": "0.81.5",
"react-native-gesture-handler": "~2.28.0",
"react-native-progress": "^5.0.1",
"react-native-reanimated": "~4.1.1",
"react-native-reorderable-list": "^0.9.0",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-svg": "15.12.1",
"react-native-uuid": "^2.0.3",
"react-native-worklets": "0.5.1"
},
"optionalDependencies": {
"react-native-google-mobile-ads": "^16.0.0",
"react-native-iap": "^14.4.39"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.1.6",
"@eslint/js": "^9.19.0",
"@jest/globals": "^29.7.0",
"@types/react": "~19.1.10",
"babel-plugin-optional-require": "^0.3.1",
"dotenv-cli": "11",
"eslint": "^9.19.0",
"eslint-plugin-react": "^7.37.4",
"globals": "^15.14.0",
"jest": "^29.7.0",
"license-ripper": "0.10",
"metro-react-native-babel-transformer": "^0.77.0",
"react-native-nitro-modules": "^0.31.5",
"react-native-svg-transformer": "^1.5.0",
"rimraf": "^6.1.0",
"tsx": "^4.19.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.46.0"
},
"expo": {
"autolinking": {
"android": {
"buildFromSource": [
".*"
]
}
}
},
"private": true
}