-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.96 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.96 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
{
"name": "mova",
"main": "./index.js",
"version": "5.20.3",
"scripts": {
"start": "expo start",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest",
"test:watch": "jest --watchAll",
"test:unit": "jest --selectProjects unit",
"test:integration": "jest --selectProjects integration",
"test:components": "jest --selectProjects components",
"test:coverage": "jest --coverage",
"e2e:build:android": "detox build --configuration android.emu.debug",
"e2e:build:android:x86_64": "cd android && ./gradlew :app:assembleDebug :app:assembleDebugAndroidTest -DtestBuildType=debug -PreactNativeArchitectures=x86_64",
"e2e:test:android": "detox test --configuration android.emu.debug",
"e2e:android": "detox test --configuration android.emu.debug --build",
"e2e:local-api:start": "./e2e/local-api.sh start",
"e2e:local-api:stop": "./e2e/local-api.sh stop",
"e2e:local-api:status": "./e2e/local-api.sh status",
"lint": "expo lint",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"typecheck": "tsc",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"validate": "yarn typecheck && yarn lint && yarn prettier",
"postinstall": "patch-package"
},
"dependencies": {
"@expo/vector-icons": "^15.0.3",
"@react-native-async-storage/async-storage": "2.2.0",
"@react-native-community/datetimepicker": "8.4.4",
"expo": "^54",
"expo-background-fetch": "~14.0.9",
"expo-constants": "~18.0.13",
"expo-font": "~14.0.11",
"expo-linking": "~8.0.11",
"expo-notifications": "~0.32.16",
"expo-router": "~6.0.23",
"expo-splash-screen": "~31.0.13",
"expo-status-bar": "~3.0.9",
"expo-system-ui": "~6.0.9",
"expo-task-manager": "~14.0.9",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-native": "0.81.5",
"react-native-android-widget": "0.20.1",
"react-native-gesture-handler": "~2.28.0",
"react-native-keyboard-controller": "1.18.5",
"react-native-paper": "^5.14.5",
"react-native-reanimated": "~4.1.1",
"react-native-safe-area-context": "~5.6.0",
"react-native-screens": "~4.16.0",
"react-native-vector-icons": "^10.2.0",
"react-native-web": "^0.21.0",
"react-native-worklets": "0.5.1"
},
"devDependencies": {
"@babel/core": "^7.28.6",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^13.3.3",
"@types/detox": "^18.1.3",
"@types/jest": "^29.5.0",
"@types/react": "~19.1.10",
"detox": "^20.46.3",
"eslint": "^9.0.0",
"eslint-config-expo": "~10.0.0",
"eslint-config-prettier": "^10.1.8",
"jest": "^29.7.0",
"jest-circus": "^30.2.0",
"jest-expo": "~54.0.17",
"patch-package": "^8.0.1",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"ts-jest": "^29.4.6",
"typescript": "~5.9.2"
},
"private": true,
"buildNumber": "4"
}