-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 3.44 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
{
"name": "rn-app-example",
"version": "0.4.0",
"private": true,
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^22.4.1",
"babel-plugin-transform-remove-console": "^6.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-config-prettier": "^6.10.1",
"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",
"eslint-plugin-react-native": "^3.8.1",
"flow-bin": "^0.89.0",
"husky": "^4.2.5",
"jest-expo": "^42.0.0",
"lorem-ipsum": "^1.0.6",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"react-test-renderer": "16.3.1"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"postinstall": "rm -rf node_modules/react-navigation/{.git,node_modules,examples}",
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest",
"flow": "flow",
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"pre-commit": "pretty-quick --staged",
"post-commit": "git update-index -g"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit",
"post-commit": "npm run post-commit"
}
},
"jest": {
"preset": "jest-expo",
"moduleFileExtensions": [
"web.js",
"js",
"json",
"jsx",
"node"
]
},
"dependencies": {
"@react-native-community/masked-view": "0.1.10",
"expo": "^42.0.0",
"expo-app-loading": "^1.1.2",
"expo-asset": "~8.3.2",
"expo-camera": "~11.2.1",
"expo-constants": "~11.0.1",
"expo-facebook": "~11.3.1",
"expo-file-system": "~11.1.3",
"expo-font": "~9.2.1",
"expo-google-app-auth": "^8.0.1",
"expo-image-manipulator": "~9.2.2",
"expo-image-picker": "~10.2.2",
"expo-location": "~12.1.2",
"expo-media-library": "~12.1.2",
"expo-permissions": "~12.1.1",
"expo-screen-orientation": "~3.2.1",
"firebase": "8.2.3",
"invariant": "^2.2.4",
"lodash": "^4.17.11",
"mobx": "^5.15.4",
"mobx-react": "^5.4.4",
"path": "^0.12.7",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-communications": "^2.2.1",
"react-native-fbsdk": "^0.10.3",
"react-native-fs": "^2.16.6",
"react-native-gesture-handler": "~1.10.2",
"react-native-iphone-x-helper": "^1.0.2",
"react-native-maps": "0.28.0",
"react-native-notifications": "^3.1.2",
"react-native-paper": "^3.6.0",
"react-native-reanimated": "~2.2.0",
"react-native-safe-area-context": "3.2.0",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "~3.4.0",
"react-native-vector-icons": "^6.7.0",
"react-navigation": "^4.2.2",
"react-navigation-drawer": "^2.4.2",
"react-navigation-material-bottom-tabs": "1.0.0",
"react-navigation-stack": "^2.2.3",
"react-navigation-tabs": "^2.8.2",
"validator": "^10.11.0",
"expo-splash-screen": "~0.11.2"
}
}