-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.02 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
{
"private": true,
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "npx expo start",
"android": "npx expo start --android",
"ios": "npx expo start --ios",
"eject": "expo eject",
"expopublish": "npx expo publish",
"lint": "node_modules/.bin/eslint src/ --fix src/ --fix",
"test": "node_modules/.bin/jest --passWithNoTests"
},
"dependencies": {
"@react-native-async-storage/async-storage": "1.23.1",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "^6.0.9",
"@react-navigation/drawer": "^6.1.8",
"@react-navigation/material-top-tabs": "^6.0.6",
"@react-navigation/native": "^6.0.6",
"@react-navigation/stack": "^6.0.11",
"@rneui/base": "^4.0.0-rc.7",
"@rneui/themed": "^4.0.0-rc.7",
"axios": "^0.27.2",
"base-64": "^1.0.0",
"expo": "^51.0.0",
"expo-asset": "~10.0.6",
"expo-device": "~6.0.2",
"expo-font": "~12.0.4",
"expo-image-manipulator": "~12.0.3",
"expo-image-picker": "~15.0.4",
"expo-linear-gradient": "~13.0.2",
"expo-notifications": "~0.28.1",
"expo-status-bar": "~1.12.1",
"expo-updates": "~0.25.9",
"firebase": "^9.6.10",
"global": "^4.4.0",
"ignore-warnings": "^0.2.1",
"jotai": "^1.7.8",
"lottie-react-native": "6.7.0",
"moment": "^2.24.0",
"patch-package": "^6.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native": "0.74.1",
"react-native-dialog": "^9.3.0",
"react-native-elements": "^3.4.2",
"react-native-gesture-handler": "~2.16.1",
"react-native-keyboard-aware-scroll-view": "^0.9.5",
"react-native-loading-spinner-overlay": "^3.0.1",
"react-native-pager-view": "6.3.0",
"react-native-paper": "^5.2.0",
"react-native-reanimated": "3.10.0",
"react-native-safe-area-context": "4.10.1",
"react-native-screens": "3.31.1",
"react-native-storage": "^1.0.1",
"react-native-svg": "15.2.0-rc.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-tab-view": "^3.1.1",
"react-native-toast-message": "^2.1.5",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "~0.19.6"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^4.0.0",
"babel-preset-expo": "~11.0.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": "~51.0.1",
"lint-staged": "^10.2.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react-test-renderer": "^16.13.1"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"bracketSpacing": true
},
"lint-staged": {
"*.{js,jsx}": [
"pretty-quick --staged",
"yarn lint",
"yarn test"
]
}
}