-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.57 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
{
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"eject": "expo eject",
"android": "expo start --android",
"ios": "expo start --ios",
"test": "jest",
"test:watch": "node node_modules/jest/bin/jest.js --watch",
"release": "node tasks/release.js",
"upload": "node tasks/upload.js",
"ver": "node tasks/version.js"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/react-native-action-sheet": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-react-native": "^3.6.0",
"expo": "^39.0.0",
"expo-constants": "~9.2.0",
"expo-document-picker": "~8.4.0",
"expo-file-system": "~9.2.0",
"expo-font": "~8.3.0",
"expo-screen-orientation": "~2.0.0",
"expo-secure-store": "~9.2.0",
"expo-web-browser": "~8.5.0",
"moment": "^2.20.1",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.0.tar.gz",
"react-native-gesture-handler": "~1.7.0",
"react-native-reanimated": "~1.13.0",
"react-native-screens": "1.0.0-alpha.22",
"react-native-swipeable": "^0.6.0",
"react-navigation": "^3.11.0",
"react-redux": "^5.0.6",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-preset-expo": "^8.3.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"jest-expo": "^39.0.0",
"react-native-scripts": "^2.0.1",
"react-test-renderer": "^16.3.0-alpha.1"
}
}