-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 4.59 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 4.59 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
117
118
119
120
121
122
123
124
125
126
{
"name": "exphive",
"main": "expo-router/entry",
"version": "1.0.0",
"scripts": {
"start": "expo start --dev-client --host local",
"reset-project": "node ./scripts/reset-project.js",
"android": "expo run:android --host local",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest --watchAll",
"lint": "expo lint",
"e2e:build": "detox build",
"e2e:test": "detox test",
"test:ui": "jest --testMatch='**/__tests__/ui/**/*.test.[jt]s?(x)'",
"test:ui:watch": "jest --testMatch='**/__tests__/ui/**/*.test.[jt]s?(x)' --watch"
},
"jest": {
"preset": "jest-expo",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|@react-native(-community)?|expo(nent)?|@expo(nent)?/.*|@expo-google-fonts/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|react-native-svg|expo-linear-gradient|@expo/vector-icons|firebase|@firebase)"
],
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"^.+\\.(png|jpg|jpeg|gif|webp|svg|ico)$": "<rootDir>/__mocks__/fileMock.js",
"expo-router": "./__mocks__/expo-router.js",
"^expo-linear-gradient$": "<rootDir>/__mocks__/expo-linear-gradient.js",
"@expo/vector-icons": "./__mocks__/expo-vector-icons.js",
"^firebase/auth$": "<rootDir>/__mocks__/firebase/auth.js",
"firebase/firestore": "<rootDir>/__mocks__/firebase/firestore.js"
},
"testMatch": [
"**/__tests__/**/*.[jt]s?(x)",
"**/?(*.)+(spec|test).[jt]s?(x)"
],
"verbose": true
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "^1.23.1",
"@react-native-community/datetimepicker": "8.2.0",
"@react-native-firebase/app": "^21.5.0",
"@react-native-firebase/auth": "^21.6.2",
"@react-native-picker/picker": "2.9.0",
"@react-navigation/bottom-tabs": "^7.1.3",
"@react-navigation/native": "^7.0.13",
"@react-navigation/stack": "^7.0.18",
"axios": "^1.7.8",
"dotenv": "^16.4.7",
"expo": "~52.0.20",
"expo-blur": "~14.0.1",
"expo-constants": "~17.0.3",
"expo-device": "~7.0.1",
"expo-font": "~13.0.2",
"expo-haptics": "~14.0.0",
"expo-image-manipulator": "^13.0.5",
"expo-image-picker": "~16.0.3",
"expo-linear-gradient": "^14.0.1",
"expo-linking": "~7.0.3",
"expo-notifications": "^0.29.11",
"expo-optimize": "^0.2.20",
"expo-router": "~4.0.14",
"expo-splash-screen": "~0.29.18",
"expo-status-bar": "~2.0.0",
"expo-symbols": "~0.2.0",
"expo-system-ui": "~4.0.6",
"expo-web-browser": "~14.0.1",
"firebase": "^11.1.0",
"firebase-admin": "^13.0.1",
"firebase-functions": "^6.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-native": "0.76.5",
"react-native-gesture-handler": "~2.20.2",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-modal-datetime-picker": "^18.0.0",
"react-native-reanimated": "~3.16.1",
"react-native-safe-area-context": "^4.12.0",
"react-native-screens": "~4.1.0",
"react-native-web": "~0.19.13",
"react-native-webview": "^13.12.5"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react": "~18.3.12",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"detox": "^20.31.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"jest-expo": "~52.0.2",
"react-native-dotenv": "^3.4.11",
"react-test-renderer": "18.3.1",
"typescript": "^5.3.3"
},
"private": true,
"detox": {
"configurations": {
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/ExpenseHive.app",
"build": "xcodebuild -workspace ios/ExpenseHive.xcworkspace -scheme ExpenseHive -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 14"
}
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Pixel_4_API_30"
}
}
}
}
}