-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.51 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.51 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
{
"name": "evcc",
"version": "1.2.0",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"lint": "tsc --noEmit && eslint .",
"format": "prettier --write .",
"translations": "node ./scripts/load-translations.mts",
"eas:ios": "eas build -p ios",
"eas:android:github": "eas build --platform android --profile preview",
"eas:android:playstore": "eas build -p android",
"test:android:emulator": "npx detox build -c android.emu.release && npx detox test -c android.emu.release",
"test:android:attached": "npx detox build -c android.att.release && npx detox test -c android.att.release",
"test:ios": "npx detox build -c ios.sim.release && npx detox test -c ios.sim.release"
},
"dependencies": {
"@eva-design/eva": "^2.2.0",
"@expo/metro-runtime": "~55.0.10",
"@inthepocket/react-native-service-discovery": "^0.2.4",
"@material-symbols/svg-400": "^0.40.2",
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-navigation/native": "^7.1.31",
"@react-navigation/native-stack": "^7.14.2",
"@types/react": "~19.2.10",
"@ui-kitten/components": "^5.3.1",
"@ui-kitten/eva-icons": "^5.3.1",
"axios": "^1.15.0",
"base-64": "^1.0.0",
"expo": "~55.0.17",
"expo-build-properties": "~55.0.13",
"expo-dev-client": "~55.0.28",
"expo-file-system": "~55.0.9",
"expo-haptics": "~55.0.14",
"expo-linking": "~55.0.14",
"expo-localization": "~55.0.13",
"expo-sharing": "~55.0.18",
"expo-splash-screen": "~55.0.19",
"expo-status-bar": "~55.0.5",
"expo-system-ui": "~55.0.16",
"expo-web-browser": "~55.0.14",
"i18next": "^26.0.8",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-i18next": "^16.5.4",
"react-native": "0.83.6",
"react-native-edge-to-edge": "^1.7.0",
"react-native-eva-icons": "^1.3.1",
"react-native-gesture-handler": "^2.30.0",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.19.0",
"react-native-svg": "^15.15.1",
"react-native-web": "^0.21.2",
"react-native-webview": "^13.16.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/base-64": "^1.0.2",
"@types/jest": "~29.5.14",
"@types/node": "^22.18.6",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"detox": "^20.46.3",
"detox-cli": "^20.46.3",
"eslint": "^10.0.2",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-native": "^4.1.0",
"jest": "~29.7.0",
"prettier": "^3.7.4",
"react-native-launch-arguments": "^4.1.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"expo": {
"doctor": {
"reactNativeDirectoryCheck": {
"exclude": [
"@ui-kitten/components",
"react-native-eva-icons",
"@eva-design/eva",
"@material-symbols/svg-400",
"@ui-kitten/eva-icons",
"base-64",
"typescript",
"react-native-gesture-handler",
"react-native-launch-arguments"
],
"listUnknownPackages": false
}
},
"install": {
"exclude": [
"react-native-gesture-handler",
"react-native-screens",
"react-native-svg",
"react-native-webview",
"react-native-safe-area-context"
]
}
},
"private": true
}