-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
99 lines (99 loc) · 3.1 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
{
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "jest --watchAll",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"prepare": "husky install"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@amityco/react-native-formdata-polyfill": "^1.1.5",
"@amityco/ts-sdk": "^0.0.1-beta.30",
"@expo/vector-icons": "^13.0.0",
"@nozbe/zacs": "^1.1.0",
"@react-native-async-storage/async-storage": "~1.17.3",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/bottom-tabs": "5.11.2",
"@react-navigation/drawer": "^5.12.5",
"@react-navigation/material-bottom-tabs": "^5.3.15",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.5",
"color": "^3.1.3",
"date-fns": "^2.23.0",
"dayjs": "^1.11.3",
"dotenv": "^16.0.0",
"expo": "^46.0.0",
"expo-application": "~4.2.2",
"expo-asset": "~8.6.1",
"expo-constants": "~13.2.4",
"expo-dark-mode-switch": "^0.0.1",
"expo-device": "~4.3.0",
"expo-document-picker": "~10.3.0",
"expo-fast-image": "^1.1.3",
"expo-file-system": "~14.1.0",
"expo-font": "~10.2.0",
"expo-image-picker": "~13.3.1",
"expo-linking": "~3.2.2",
"expo-localization": "~13.1.0",
"expo-splash-screen": "~0.16.2",
"expo-status-bar": "~1.4.0",
"expo-updates": "~0.14.6",
"expo-web-browser": "~11.0.0",
"i18n-js": "^3.8.0",
"mime-types": "^2.1.32",
"path": "^0.12.7",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hook-form": "^7.12.1",
"react-native": "0.69.6",
"react-native-gesture-handler": "~2.5.0",
"react-native-keyboard-aware-scroll-view": "^0.9.4",
"react-native-lightbox-v2": "^0.8.8",
"react-native-pager-view": "5.4.24",
"react-native-paper": "^4.11.2",
"react-native-parsed-text": "^0.0.22",
"react-native-reanimated": "~2.9.1",
"react-native-safe-area-context": "4.3.1",
"react-native-screens": "~3.15.0",
"react-native-svg": "12.3.0",
"react-native-tab-view": "^3.0.1",
"react-native-web": "~0.18.7",
"use-debounce": "^7.0.0"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@types/color": "^3.0.2",
"@types/i18n-js": "^3.8.2",
"@types/mime-types": "^2.1.1",
"@types/react": "~18.0.0",
"@types/react-native": "~0.69.1",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-eko": "3.0.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": ">=6",
"jest-expo": "^46.0.0",
"lint-staged": "^10.5.2",
"prettier": "2.4.0",
"typescript": "^4.6.3"
},
"private": true,
"lint-staged": {
"*.{ts,tsx}": "eslint --cache"
}
}