-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.43 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
{
"name": "tenp-challenge",
"version": "1.0.0",
"main": "expo-router/entry",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"test": "jest --env=jsdom"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4.4.7",
"@reduxjs/toolkit": "^1.9.5",
"@types/react-test-renderer": "^18.0.0",
"expo": "~49.0.5",
"expo-constants": "~14.4.2",
"expo-font": "~11.4.0",
"expo-linking": "~5.0.2",
"expo-location": "~16.1.0",
"expo-router": "2.0.0",
"expo-status-bar": "~1.6.0",
"i18next": "^23.3.0",
"jest": "^29.2.1",
"jest-expo": "^49.0.0",
"react": "18.2.0",
"react-i18next": "^13.0.2",
"react-native": "0.72.3",
"react-native-autocomplete-input": "^5.3.2",
"react-native-gesture-handler": "~2.12.0",
"react-native-maps": "1.7.1",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.7.1",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-svg-transformer": "^1.1.0",
"react-native-uuid": "^2.0.1",
"react-native-web": "~0.19.6",
"react-redux": "^8.1.1",
"react-test-renderer": "^18.2.0",
"styled-components": "^6.0.5",
"styled-system": "^5.1.5"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react": "^14.0.0",
"@testing-library/react-native": "^12.1.3",
"@types/jest": "^29.5.3",
"@types/react": "~18.0.14",
"babel-jest": "^29.6.2",
"jest-svg-transformer": "^1.0.0",
"typescript": "^5.1.3"
},
"private": true,
"overrides": {
"metro": "0.76.0",
"metro-resolver": "0.76.0"
},
"jest": {
"preset": "jest-expo",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"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|react-native-svg-transformer|react-native-reanimated)"
],
"modulePathIgnorePatterns": [
"<rootDir>/__tests__/setupTests.ts"
],
"moduleNameMapper": {
"\\.svg": "<rootDir>/__mocks__/svgMock.ts"
},
"collectCoverageFrom": [
"__tests__/*.test.{ts,tsx}"
]
}
}