-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 4.66 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
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
127
128
129
130
131
132
133
134
135
136
137
138
{
"scripts": {
"start": "chmod +x start.sh && ./start.sh",
"build": "chmod +x build.sh && ./build.sh",
"android": "npx expo start --android",
"ios": "npx expo start --ios",
"web": "npx expo start --web",
"eject": "expo eject",
"test": "node_modules/jest/bin/jest.js",
"ts-lint": "tsc --noEmit && eslint ./src --ext .js,.jsx,.ts,.tsx -c .eslintrc.js",
"eas-build-pre-install": "echo $ANDROID_GOOGLE_SERVICES_BASE64 | base64 --decode > ./google-services.json"
},
"jest": {
"preset": "jest-expo",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.[jt]sx?$": "babel-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|@react-native|react-clone-referenced-element|@react-native-community|@react-native-async-storage|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|native-base|@sentry/.*|react-redux)"
],
"cacheDirectory": ".jest/cache",
"setupFiles": [
"./mock.js"
]
},
"dependencies": {
"@expo/metro-config": "~0.18.11",
"@expo/metro-runtime": "~3.2.3",
"@formatjs/intl-datetimeformat": "^6.12.2",
"@formatjs/intl-getcanonicallocales": "^2.3.0",
"@formatjs/intl-locale": "^3.4.5",
"@formatjs/intl-numberformat": "^8.10.0",
"@formatjs/intl-pluralrules": "^5.2.12",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-community/slider": "4.5.2",
"@react-navigation/bottom-tabs": "^6.3.1",
"@react-navigation/material-top-tabs": "^6.2.1",
"@react-navigation/native": "^6.0.10",
"@react-navigation/stack": "^6.2.1",
"@reduxjs/toolkit": "~2.2.6",
"@sentry/react-native": "~5.24.3",
"array-flat-polyfill": "^1.0.1",
"axios": "^1.6.7",
"babel-jest": "^29.7.0",
"bignumber.js": "^9.0.2",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.6.3",
"expo": "~51.0.39",
"expo-application": "~5.9.1",
"expo-asset": "~10.0.10",
"expo-av": "~14.0.7",
"expo-build-properties": "~0.12.5",
"expo-camera": "~15.0.16",
"expo-constants": "~16.0.2",
"expo-dev-client": "~4.0.29",
"expo-device": "~6.0.2",
"expo-file-system": "~17.0.1",
"expo-font": "~12.0.10",
"expo-image-manipulator": "~12.0.5",
"expo-image-picker": "~15.0.7",
"expo-intent-launcher": "~11.0.1",
"expo-linear-gradient": "~13.0.2",
"expo-notifications": "~0.28.19",
"expo-print": "~13.0.1",
"expo-screen-orientation": "~7.0.5",
"expo-sharing": "~12.0.1",
"expo-splash-screen": "~0.27.7",
"expo-system-ui": "~3.0.7",
"expo-updates": "~0.25.27",
"luxon": "^3.4.4",
"metro": "~0.80.8",
"metro-config": "~0.80.8",
"metro-resolver": "~0.80.8",
"mime": "^3.0.0",
"qs": "^6.10.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.5",
"react-native-draggable-flatlist": "^4.0.1",
"react-native-drax": "^0.10.3",
"react-native-gesture-handler": "~2.16.1",
"react-native-markdown-display": "^7.0.0-alpha.2",
"react-native-pager-view": "6.3.0",
"react-native-reanimated": "~3.10.1",
"react-native-safe-area-context": "4.10.5",
"react-native-screens": "3.31.1",
"react-native-svg": "15.2.0",
"react-native-tab-view": "^3.0.1",
"react-native-web": "~0.19.6",
"react-native-webview": "13.8.6",
"react-redux": "^9.1.2"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.191",
"@types/luxon": "^3.4.2",
"@types/mime": "^3.0.1",
"@types/qs": "^6.9.14",
"@types/react": "~18.2.79",
"@types/react-dom": "~18.2.25",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"axios-mock-adapter": "^1.19.0",
"babel-preset-expo": "~11.0.0",
"dotenv": "^16.0.1",
"eslint": "^8.13.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"expo-doctor": "^1.4.0",
"jest": "~29.7.0",
"jest-expo": "~51.0.4",
"react-test-renderer": "^18.0.0",
"sinon": "^17.0.1",
"ts-jest": "^29.1.2",
"typescript": "~5.3.0"
},
"engines": {
"node": "^20.18.0"
},
"private": true
}