-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.99 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.99 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject",
"test": "jest --detectOpenHandles"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^6.0.13",
"@react-navigation/stack": "^6.3.4",
"expo": "^48.0.0",
"expo-linear-gradient": "~12.1.1",
"expo-status-bar": "~1.4.4",
"mobx": "^6.6.2",
"mobx-react": "^7.5.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.71.3",
"react-native-gesture-handler": "~2.9.0",
"react-native-paper": "^4.12.5",
"react-native-reanimated": "~2.14.4",
"react-native-safe-area-context": "4.5.0",
"react-native-screens": "~3.20.0",
"react-native-web": "~0.18.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-native": "^5.1.2",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^11.4.0",
"@types/react": "~18.0.27",
"@types/react-native": "^0.71.3",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-react": "^7.32.2",
"jest-expo": "^48.0.0",
"react-test-renderer": "^18.2.0",
"typescript": "^4.9.4"
},
"private": true,
"jest": {
"verbose": true,
"testTimeout": 100000,
"preset": "jest-expo",
"setupFiles": [
"./config/setupFiles.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect",
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*|@somapay/storybook-somapay-mobile)"
]
}
}