forked from cbedroid/Uber-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.13 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
{
"name": "uber-clone",
"version": "1.0.0",
"main": "./src/index.js",
"scripts": {
"start": "expo start --dev-client",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web",
"eject": "expo eject",
"lint": "eslint -c .eslintrc './src/**/*.{js,jsx}'",
"lint:fix": "eslint \"./src/**/*.{js,jsx}\" --fix"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"dependencies": {
"@babel/eslint-parser": "^7.17.0",
"@expo/dev-tools": "^0.13.145",
"@gorhom/bottom-sheet": "^4.1.5",
"@react-native-async-storage/async-storage": "^1.15.0",
"@react-native-community/masked-view": "^0.1.11",
"@react-native-firebase/app": "^14.7.0",
"@react-native-firebase/auth": "^14.7.0",
"@react-native-firebase/crashlytics": "^14.7.0",
"@react-native-firebase/perf": "^14.7.0",
"@react-native-picker/picker": "^2.2.1",
"@react-navigation/devtools": "^6.0.5",
"@react-navigation/native": "^5.9.8",
"@react-navigation/stack": "^5.14.9",
"@reduxjs/toolkit": "^1.7.2",
"axios": "^0.26.0",
"bcryptjs": "^2.4.3",
"country-codes-list": "^1.6.8",
"country-flag-icons": "^1.4.22",
"electron": "^17.2.0",
"expo": "~44.0.0",
"expo-app-loading": "^1.3.0",
"expo-cli": "^5.3.0",
"expo-firebase-recaptcha": "~2.1.0",
"expo-location": "~14.0.1",
"expo-secure-store": "~11.1.0",
"expo-splash-screen": "~0.14.1",
"expo-status-bar": "~1.2.0",
"expo-updates": "~0.11.6",
"firebase": "^9.6.10",
"google-libphonenumber": "^3.2.27",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"react": "17.0.1",
"react-devtools-core": "^4.14.0",
"react-dom": "17.0.1",
"react-native": "0.64.3",
"react-native-cli": "^2.0.1",
"react-native-code-push": "^7.0.4",
"react-native-dotenv": "^3.3.1",
"react-native-easy-grid": "^0.2.2",
"react-native-element-dropdown": "^1.8.2",
"react-native-elements": "^3.4.2",
"react-native-firebase": "^5.6.0",
"react-native-gesture-handler": "~2.1.0",
"react-native-google-places-autocomplete": "^2.4.1",
"react-native-link": "^4.1.0",
"react-native-maps": "0.29.4",
"react-native-raw-bottom-sheet": "^2.2.0",
"react-native-reanimated": "^2.3.1",
"react-native-safe-area-context": "^3.3.2",
"react-native-screens": "~3.10.1",
"react-native-svg": "^12.1.1",
"react-native-svg-transformer": "^1.0.0",
"react-native-web": "0.17.1",
"react-native-webview": "^11.15.0",
"react-redux": "^7.2.6",
"redux": "^4.1.2",
"redux-devtools-extension": "^2.13.9",
"redux-persist": "^6.0.0",
"redux-starter-kit": "^2.0.0",
"tailwind-react-native-classnames": "^1.5.1",
"typescript": "^4.5.5"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@faker-js/faker": "^6.0.0-alpha.7",
"babel-eslint": "^10.1.0",
"electron-devtools-installer": "^3.2.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"intl": "^1.2.5",
"remote-redux-devtools": "^0.5.16"
},
"private": true
}