-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 3.26 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
{
"name": "my-new-project",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node ./node_modules/jest/bin/jest.js --watchAll"
},
"jest": {
"preset": "jest-expo"
},
"dependencies": {
"@expo/samples": "2.1.1",
"@expo/vector-icons": "^10.0.0",
"@react-native-community/async-storage": "~1.12.0",
"@react-native-community/datetimepicker": "3.0.0",
"@react-native-community/masked-view": "0.1.10",
"@react-native-community/netinfo": "5.9.6",
"axios": "^0.19.2",
"expo": "^39.0.0",
"expo-asset": "~8.2.0",
"expo-av": "~8.6.0",
"expo-background-fetch": "~8.5.0",
"expo-constants": "~9.2.0",
"expo-document-picker": "~8.4.0",
"expo-file-system": "~9.2.0",
"expo-font": "~8.3.0",
"expo-image-picker": "~9.1.1",
"expo-location": "~9.0.0",
"expo-permissions": "~9.3.0",
"expo-screen-orientation": "~2.0.0",
"expo-sharing": "~8.4.1",
"expo-sqlite": "~8.4.0",
"expo-task-manager": "~8.5.0",
"expo-video-player": "^1.5.8",
"expo-video-thumbnails": "~4.3.0",
"lodash": "^4.17.15",
"prop-types": "^15.7.2",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-39.0.3.tar.gz",
"react-native-appearance": "~0.3.3",
"react-native-autocomplete-input": "^4.0.0",
"react-native-datepicker": "bkoether/react-native-datepicker",
"react-native-easy-toast": "^1.2.0",
"react-native-elements": "^1.1.0",
"react-native-gesture-handler": "~1.7.0",
"react-native-image-crop-picker": "^0.21.3",
"react-native-image-picker-form": "^0.2.5",
"react-native-json-tree": "^1.2.0",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-map-picker": "github:kanopi/react-native-map-picker",
"react-native-maps": "0.27.1",
"react-native-modalbox": "^1.7.1",
"react-native-picker-select": "^6.6.0",
"react-native-progress": "^3.6.0",
"react-native-reanimated": "~1.13.0",
"react-native-render-html": "^4.2.0",
"react-native-safe-area-context": "3.1.4",
"react-native-screens": "~2.10.1",
"react-native-scrollable-tab-view-forked": "^1.1.1",
"react-native-settings-list": "^1.8.0",
"react-native-snap-carousel": "^3.9.0",
"react-native-tab-view": "^2.14.0",
"react-native-webview": "10.7.0",
"react-navigation": "^4.3.9",
"react-navigation-stack": "^2.5.1",
"react-navigation-tabs": "^2.8.13",
"react-redux": "^5.1.1",
"react-swipeable-views-native": "^0.13.2",
"redux": "^4.0.5",
"tcomb-form-native": "^0.6.20",
"tcomb-json-schema": "^0.3.2",
"typy": "^3.3.0",
"validator": "^10.11.0",
"weight-sort": "^1.3.0"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-preset-expo": "^8.3.0",
"eslint": "^7.0.0",
"eslint-plugin-jest": "^23.11.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.1",
"eslint-plugin-react-native": "^3.8.1",
"jest-expo": "^39.0.0",
"react-devtools": "^4",
"react-native-testing-library": "^1.13.2",
"react-test-renderer": "^16.13.1"
}
}