forked from disc-in/UltimateApp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.18 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"test": "jest --watch --coverage=false --changedSince=master",
"test-ci": "jest --coverage=true",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"lint": "eslint src --max-warnings=0 --ext .js,.jsx",
"lint-fix": "eslint src --fix --ext .js,.jsx",
"prettier": "prettier 'src/**/*.{ts,tsx,js,jsx}' --list-different",
"prettier-fix": "prettier 'src/**/*.{ts,tsx,js,jsx}' --write"
},
"dependencies": {
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/viewpager": "4.2.0",
"@react-native-picker/picker": "1.9.11",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/native": "^5.9.4",
"@react-navigation/routers": "^5.7.2",
"@react-navigation/stack": "^5.14.4",
"expo": "^41.0.0",
"expo-av": "~9.1.2",
"expo-constants": "~10.1.3",
"expo-linking": "~2.2.3",
"expo-localization": "~10.1.0",
"expo-mail-composer": "~10.1.2",
"expo-screen-orientation": "~3.1.0",
"firebase": "8.2.3",
"formik": "^2.2.8",
"i18n-js": "^3.8.0",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-41.0.0.tar.gz",
"react-native-collapsible": "^1.6.0",
"react-native-dotenv": "^2.5.5",
"react-native-elements": "^3.4.1",
"react-native-flash-message": "^0.1.23",
"react-native-gesture-handler": "~1.10.2",
"react-native-get-random-values": "~1.7.0",
"react-native-paper": "^4.8.1",
"react-native-reanimated": "~2.1.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.0.0",
"react-native-snap-carousel": "^3.9.1",
"react-native-web": "~0.13.12",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"uuid": "^8.3.2",
"watchman": "^1.0.0",
"yup": "^0.32.9"
},
"devDependencies": {
"@babel/core": "~7.14.0",
"@babel/eslint-plugin": "^7.13.16",
"@testing-library/react-native": "7.1.0",
"babel-preset-expo": "8.3.0",
"eslint": "^7.25.0",
"eslint-config-universe": "^7.0.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.10.0",
"husky": "^4.3.7",
"jest": "^26.6.3",
"jest-expo": "^41.0.0",
"lint-staged": "^10.5.4",
"nock": "^13.0.11",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"react-test-renderer": "^16.13.1",
"redux-mock-store": "^1.5.4",
"typescript": "~4.0.0"
},
"lint-staged": {
"**/*.{js,jsx,css}": [
"npm run lint-fix",
"npm run prettier-fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "jest-expo",
"setupFiles": [
"./setupJest.js"
],
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|react-clone-referenced-element|@react-native-community|expo(nent)?|@expo(nent)?/.*|react-navigation|@react-navigation/.*|@unimodules/.*|unimodules|sentry-expo|native-base|@sentry/.*|@react-native-picker)"
]
},
"engines": {
"node": ">=0.12"
},
"private": true,
"license": "MIT"
}