-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 3.09 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 3.09 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
{
"private": true,
"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",
"lint": "node_modules/.bin/eslint src/ --fix src/ --fix",
"test": "node_modules/.bin/jest --passWithNoTests"
},
"dependencies": {
"@expo/vector-icons": "^13.0.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/netinfo": "8.2.0",
"@react-native-picker/picker": "2.4.0",
"@react-navigation/bottom-tabs": "^5.11.15",
"@react-navigation/drawer": "^5.11.4",
"@react-navigation/native": "^5.8.10",
"@react-navigation/stack": "^5.12.8",
"@reduxjs/toolkit": "^1.5.1",
"axios": "^0.21.4",
"buffer": "^6.0.3",
"expo": "^45.0.0",
"expo-asset": "~8.5.0",
"expo-cli": "^5.3.0",
"expo-font": "~10.1.0",
"expo-status-bar": "^1.3.0",
"expo-updates": "~0.13.1",
"global": "^4.4.0",
"moment": "^2.29.1",
"prop-types": "^15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-native": "0.68.1",
"react-native-animatable": "^1.3.3",
"react-native-autoheight-webview": "^1.6.1",
"react-native-calendars": "^1.1277.0",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~2.2.1",
"react-native-material-menu": "^2.0.0",
"react-native-modal": "^13.0.1",
"react-native-modalize": "^2.0.13",
"react-native-reanimated": "~2.8.0",
"react-native-safe-area-context": "4.2.4",
"react-native-screens": "~3.11.1",
"react-native-snap-carousel": "^3.9.1",
"react-native-svg": "12.3.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-vector-icons": "^6.6.0",
"react-native-web": "0.17.7",
"react-native-webview": "11.18.1",
"react-redux": "^7.2.5",
"redux": "^4.1.1",
"redux-logger": "^3.0.6",
"redux-middleware": "^0.1.21",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~9.1.0",
"braces": ">=2.3.1",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^2.5.1",
"husky": "^4.2.5",
"jest-expo": "^45.0.0",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.13.1"
},
"jest": {
"preset": "jest-expo",
"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/.*)"
]
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"yarn lint",
"yarn test"
]
}
}