-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.19 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 3.19 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
{
"name": "visit-link-app",
"main": "src/index.ts",
"version": "0.0.1",
"resolutions": {
"fast-xml-parser": "^5.3.4"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint ./src",
"test": "jest --watchAll",
"test:ci": "jest --silent --coverage",
"prepare": "husky"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/datetimepicker": "8.0.1",
"@react-native-community/netinfo": "11.3.1",
"@react-navigation/bottom-tabs": "^6.6.1",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"expo": "^51.0.31",
"expo-asset": "~10.0.10",
"expo-av": "~14.0.7",
"expo-build-properties": "~0.12.5",
"expo-camera": "~15.0.15",
"expo-constants": "~16.0.2",
"expo-file-system": "~17.0.1",
"expo-font": "~12.0.10",
"expo-linear-gradient": "~13.0.2",
"expo-localization": "~15.0.3",
"expo-location": "~17.0.1",
"expo-screen-orientation": "~7.0.5",
"expo-splash-screen": "~0.27.5",
"expo-status-bar": "~1.12.1",
"expo-web-browser": "~13.0.3",
"formik": "^2.1.4",
"fundebug-reactnative": "^0.1.1",
"i18next": "^23.14.0",
"moment": "^2.27.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-i18next": "15.0.1",
"react-native": "0.74.5",
"react-native-autocomplete-input": "^5.4.0",
"react-native-calendars": "^1.300.0",
"react-native-gesture-handler": "~2.16.1",
"react-native-htmlview": "^0.17.0",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-loading-spinner-overlay": "^3.0.1",
"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-styled-px2dp": "^1.0.3",
"react-native-svg": "15.2.0",
"react-native-tab-view": "^3.1.1",
"react-native-web": "~0.19.10",
"react-redux": "^7.2.0",
"redux": "^4.0.5",
"styled-components": "^5.1.0",
"yup": "1.4.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/react-hooks": "^3.4.1",
"@testing-library/react-native": "12.6.0",
"@types/jest": "^29.5.12",
"@types/react": "~18.2.79",
"eslint": "^8.57.0",
"eslint-config-expo": "^7.1.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"jest": "^29.2.1",
"jest-expo": "~51.0.3",
"lint-staged": "^15.2.9",
"moment-timezone": "^0.5.45",
"prettier": "^3.3.3",
"react-devtools": "5.3.1",
"react-test-renderer": "18.2.0",
"typescript": "~5.3.3"
},
"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)"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"setupFilesAfterEnv": [
"@testing-library/react-native/extend-expect"
]
}
}