forked from disc-in/UltimateApp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.74 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.74 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
{
"scripts": {
"test": "jest --watch --coverage=false --changedSince=main",
"test-ci": "jest --coverage=true",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"prepare": "husky install"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.18.2",
"@react-native-masked-view/masked-view": "0.2.9",
"@react-native-picker/picker": "2.4.10",
"@react-navigation/material-bottom-tabs": "^6.2.19",
"@react-navigation/native": "^6.1.9",
"@react-navigation/stack": "^6.3.20",
"dotenv": "^16.0.1",
"expo": "^49.0.0",
"expo-av": "~13.4.1",
"expo-constants": "~14.4.2",
"expo-crypto": "~12.4.1",
"expo-linking": "~5.0.2",
"expo-localization": "~14.3.0",
"expo-mail-composer": "~12.3.0",
"expo-screen-orientation": "~6.0.6",
"expo-splash-screen": "~0.20.5",
"expo-updates": "~0.18.17",
"firebase": "9.17.1",
"formik": "^2.2.9",
"i18n-js": "^4.3.2",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-collapsible": "^1.6.0",
"react-native-elements": "^3.4.3",
"react-native-flash-message": "^0.4.0",
"react-native-gesture-handler": "~2.12.0",
"react-native-pager-view": "6.2.0",
"react-native-paper": "^5.11.3",
"react-native-reanimated": "~3.3.0",
"react-native-safe-area-context": "4.6.3",
"react-native-screens": "~3.22.0",
"react-native-snap-carousel": "yadigarbz/react-native-snap-carousel#df1ec4da3194eb20ffb797270b971a33b3ae6d72",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",
"watchman": "^1.0.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@testing-library/react-native": "^11.5.0",
"babel-preset-expo": "^9.5.0",
"eslint": "^8.31.0",
"eslint-config-universe": "^11.1.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^8.0.0",
"jest": "^29.4.3",
"jest-expo": "~49.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.2",
"redux-mock-store": "^1.5.4",
"typescript": "^5.1.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./setupJest.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?@?react-native|@react-native-community|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|i18n-js|native-base|@sentry/.*|@react-native-picker)"
],
"resolver": "<rootDir>/jest.resolver.js"
},
"engines": {
"node": ">=0.20"
},
"private": true,
"license": "MIT"
}