-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.12 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
{
"name": "sales-management",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"test": "jest"
},
"dependencies": {
"@eva-design/eva": "^2.1.1",
"@expo-google-fonts/halant": "^0.2.2",
"@expo-google-fonts/montserrat": "^0.2.2",
"@expo-google-fonts/satisfy": "^0.2.2",
"@expo/vector-icons": "^13.0.0",
"@fawazahmed/react-native-read-more": "^2.3.6",
"@gorhom/portal": "^1.0.13",
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-community/hooks": "^2.8.1",
"@react-navigation/bottom-tabs": "^6.2.0",
"@react-navigation/native": "^6.0.8",
"@react-navigation/stack": "^6.1.1",
"@ui-kitten/components": "^5.1.1",
"@ui-kitten/date-fns": "^5.1.1",
"date-fns": "^2.28.0",
"expo": "^49.0.0",
"expo-clipboard": "~4.3.1",
"expo-constants": "~14.4.2",
"expo-contacts": "~12.2.0",
"expo-document-picker": "~11.5.4",
"expo-file-system": "~15.4.4",
"expo-font": "~11.4.0",
"expo-linear-gradient": "~12.3.0",
"expo-sharing": "~11.5.0",
"expo-splash-screen": "~0.20.5",
"expo-status-bar": "~1.6.0",
"formik": "^2.2.9",
"jest-expo": "^46.0.1",
"moti": "^0.17.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-intl": "^6.1.0",
"react-native": "0.72.4",
"react-native-animated-nav-tab-bar": "^3.1.7",
"react-native-gesture-handler": "~2.12.0",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-svg": "13.9.0",
"react-native-toast-notifications": "^3.2.3",
"react-native-uuid": "^2.0.1",
"react-native-web": "~0.19.6",
"react-number-format": "^4.9.3",
"recyclerlistview": "^3.0.5",
"styled-components": "^5.3.3",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@testing-library/jest-native": "^4.0.12",
"@testing-library/react-native": "^11.1.0",
"@types/jest": "^29.0.3",
"@types/react": "~18.2.14",
"@types/react-native": "~0.69.1",
"@types/react-test-renderer": "^18.0.0",
"jest": "^29.2.1",
"react-native-svg-transformer": "^1.0.0",
"react-test-renderer": "18",
"typescript": "^5.1.3"
},
"jest": {
"preset": "jest-expo",
"moduleFileExtensions": [
"js",
"ts",
"jsx",
"tsx",
"json",
"node"
],
"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|@ui-kitten|moti/.*)"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"setupFiles": [
"<rootDir>/tests/jest-setup.js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js"
]
},
"private": true
}