-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.38 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
{
"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",
"prepare": "husky install",
"lintfix": "eslint --fix --ext .js,.jsx .",
"test": "jest",
"testDebug": "jest -o --coverage=false",
"testNoCov": "jest --coverage=false",
"updateSnapshots": "jest -u --coverage=false"
},
"jest": {
"preset": "jest-expo",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/node_modules/**",
"!**/babel.config.js",
"!**/jest.setup.js",
"!**/chrome/**"
],
"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|@sentry/.*|@rneui/base|@rneui/themed)"
]
},
"dependencies": {
"@expo-google-fonts/source-sans-pro": "0.2.2",
"@expo/cli": "0.6.2",
"@react-native-async-storage/async-storage": "1.17.11",
"@react-native-masked-view/masked-view": "0.2.8",
"@react-navigation/native": "6.0.11",
"@react-navigation/stack": "6.2.2",
"@rneui/base": "4.0.0-rc.5",
"@rneui/themed": "4.0.0-rc.5",
"expo": "47.0.13",
"expo-application": "5.0.1",
"expo-constants": "14.0.2",
"expo-device": "5.0.0",
"expo-font": "11.0.1",
"expo-image-picker": "14.0.2",
"expo-linear-gradient": "12.0.1",
"expo-linking": "3.3.1",
"expo-permissions": "14.0.0",
"expo-splash-screen": "0.17.5",
"expo-status-bar": "1.4.2",
"expo-updates": "0.15.6",
"formik": "2.2.9",
"i18next": "22.4.5",
"intl-pluralrules": "1.3.1",
"mime": "3.0.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-i18next": "12.1.1",
"react-native": "0.70.5",
"react-native-dropdown-picker": "5.4.7-beta.1",
"react-native-gesture-handler": "2.8.0",
"react-native-reanimated": "2.12.0",
"react-native-render-html": "6.3.4",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "3.18.0",
"react-native-web": "0.18.9",
"sentry-expo": "6.0.0",
"yup": "0.32.11",
"expo-image-manipulator": "11.0.0",
"expo-file-system": "15.1.1"
},
"devDependencies": {
"@babel/core": "7.18.6",
"@babel/plugin-proposal-export-namespace-from": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@expo/webpack-config": "18.0.1",
"@testing-library/jest-native": "4.0.5",
"@testing-library/react-native": "10.1.1",
"eslint": "8.19.0",
"eslint-plugin-jest": "26.5.3",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-native": "4.0.0",
"eslint-plugin-react-native-a11y": "3.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"glob-stream": "^7.0.0",
"husky": "8.0.1",
"i18next-parser": "7.7.0",
"jest": "28.1.2",
"jest-expo": "47.0.1",
"lint-staged": "13.0.3",
"react-test-renderer": "18.1.0",
"webpack-dev-server": "4.9.3"
},
"overrides": {
"eslint-plugin-react-native-a11y": {
"eslint": "$eslint"
},
"i18next-scanner": {
"glob-stream": "7.0.0"
},
"expo": {
"json5": "2.2.3"
}
},
"private": true,
"lint-staged": {
"*.js": "eslint"
}
}