-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
162 lines (162 loc) · 5.08 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"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",
"test": "jest --watchAll",
"lint-all": "eslint . --ext .jsx,.js",
"lint-all:fix": "yarn run lint-all --fix",
"lint-all:quiet": "eslint . --ext .jsx,.js --quiet",
"lint-all:quiet:fix": "yarn run lint-all:quiet --fix",
"pretty": "prettier --config .prettierrc --write",
"pretty-all": "prettier --config .prettierrc --write \"./{components,constants,lib,navigation,screens,styled}/**/*.js\" \"./{components,constants,lib,navigation,screens,styled}/*.js\"",
"generate-schema": "generate-airtable-schema",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"prepare": "husky install"
},
"airtable-schema-generator": {
"output": "lib/airtable",
"mode": "auto-headless",
"envFileName": ".env.generator",
"schemaMeta": {
"Customers": {
"lookupFields": [
"Phone Number"
]
}
}
},
"eslintConfig": {
"extends": "universe/native"
},
"jest": {
"preset": "jest-expo"
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"eslint --fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "yarnhook",
"post-merge": "yarnhook",
"post-rewrite": "yarnhook"
}
},
"dependencies": {
"@babel/core": "^7.12.9",
"@expo/samples": "~3.0.3",
"@expo/vector-icons": "^12.0.0",
"@react-native-async-storage/async-storage": "^1.16.3",
"@react-native-community/checkbox": "^0.5.9",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/masked-view": "0.1.10",
"@react-navigation/core": "^5.16.1",
"@react-navigation/drawer": "^5.12.9",
"@react-navigation/native": "^5.9.8",
"@react-navigation/stack": "^5.2.8",
"@sentry/react-native": "^3.2.11",
"@unimodules/core": "~7.2.0",
"airtable": "^0.11.1",
"expo": "^44.0.0",
"expo-app-loading": "~1.3.0",
"expo-application": "~4.0.1",
"expo-asset": "~8.4.6",
"expo-branch": "~5.1.0",
"expo-camera": "~12.1.0",
"expo-cli": "^5.0.3",
"expo-clipboard": "~2.1.0",
"expo-constants": "~13.0.0",
"expo-crypto": "~10.1.1",
"expo-device": "~4.1.0",
"expo-firebase-analytics": "~6.0.0",
"expo-firebase-core": "~4.1.0",
"expo-firebase-recaptcha": "~2.1.0",
"expo-font": "~10.0.4",
"expo-haptics": "~11.1.0",
"expo-linking": "~3.0.0",
"expo-location": "~14.0.1",
"expo-notifications": "~0.14.0",
"expo-permissions": "~13.1.0",
"expo-splash-screen": "~0.14.1",
"expo-status-bar": "~1.2.0",
"expo-updates": "~0.11.3",
"expo-web-browser": "~10.1.0",
"firebase": "8.2.3",
"geo2zip": "^2.0.2",
"geolib": "^3.1.0",
"global": "^4.4.0",
"install": "^0.13.0",
"isomorphic-fetch": "^3.0.0",
"libphonenumber-js": "^1.7.52",
"lodash": "^4.17.20",
"moment": "^2.29.1",
"npm": "^6.14.6",
"prop-types": "^15.0",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-geocode": "^0.2.0",
"react-is": "^16.12.0",
"react-native": "0.64.3",
"react-native-alert-async": "^1.0.5",
"react-native-autoheight-webview": "^1.5.1",
"react-native-elements": "^3.4.1",
"react-native-firebase": "^5.6.0",
"react-native-gesture-handler": "~2.1.0",
"react-native-global-props": "^1.1.5",
"react-native-map-link": "^2.7.5",
"react-native-maps": "0.29.4",
"react-native-materialui-textfield": "^0.13.2",
"react-native-paper": "^4.5.0",
"react-native-phone-input": "^0.2.4",
"react-native-reanimated": "~2.3.1",
"react-native-safe-area-context": "3.3.2",
"react-native-screens": "~3.10.1",
"react-native-smooth-pincode-input": "^1.0.9",
"react-native-snap-carousel": "^3.9.0",
"react-native-tab-view": "^2.11.0",
"react-native-vector-icons": "^6.6.0",
"react-native-web": "0.17.1",
"react-native-webview": "^11.17.1",
"react-phone-number-input": "^2.3.24",
"reanimated-bottom-sheet": "^1.0.0-alpha.15",
"sentry-expo": "^4.0.0",
"styled-components": "^5.0.1",
"validate.js": "^0.13.1"
},
"devDependencies": {
"airtable-schema-generator": "^1.3.4",
"babel-eslint": "^10.0.3",
"babel-preset-expo": "9.0.1",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^7.0.0",
"jest-expo": "^44.0.0",
"lint-staged": "^10.0.6",
"prettier": "^1.18.2",
"pretty-quick": "^3.1.3",
"react-devtools": "4.22.1",
"surge": "^0.21.3",
"vuepress": "^1.4.1",
"vuepress-plugin-container": "^2.1.3",
"yarnhook": "^0.4.3"
},
"private": true,
"peerDependencies": {
"@unimodules/core": "^5.1.2"
}
}