forked from calebnance/expo-uber
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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
{
"name": "expo-uber",
"version": "0.0.1",
"description": "uber clone with expo",
"author": "Caleb Nance",
"license": "MIT",
"keywords": [
"expo",
"react native",
"react navigation",
"uber"
],
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"dev": "expo start",
"start": "expo start",
"lint": "eslint ./src",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject"
},
"dependencies": {
"expo": "^35.0.0",
"expo-asset": "~7.0.0",
"expo-barcode-scanner": "~7.0.0",
"expo-constants": "~7.0.0",
"expo-font": "~7.0.0",
"expo-location": "~7.0.0",
"expo-permissions": "~7.0.0",
"prop-types": "^15.7.2",
"react": "16.8.3",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-gesture-handler": "~1.3.0",
"react-native-maps": "~0.25.0",
"react-native-reanimated": "~1.2.0",
"react-native-svg": "9.9.5",
"react-navigation": "^3.11.1"
},
"devDependencies": {
"babel-preset-expo": "^7.0.0",
"eslint": "^5.16.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"prettier": "^1.17.1"
},
"private": true,
"prettier": {
"singleQuote": true
},
"eslintIgnore": [
"babel.config.js"
],
"engines": {
"node": ">=10.13.0"
}
}