-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 4.16 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
102
103
104
105
106
107
108
109
110
111
{
"name": "Cellr",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"build:ios": "react-native bundle --entry-file index.js --platform ios --dev false --bundle-output ios/main.jsbundle --assets-dest ios",
"build:android": "cd android && ./gradlew assembleRelease && cd ..",
"ios": "react-native run-ios --simulator='iPhone 11'",
"ios:device": "react-native run-ios --device && npm run lint-watch",
"android": "react-native run-android",
"lint": "eslint .",
"lint-watch": "esw -w --changed src/**",
"test": "jest",
"postinstall": "npx patch-package"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.3",
"@davidgovea/react-native-wheel-datepicker": "^1.0.1",
"@react-native-community/async-storage": "^1.6.2",
"@react-native-community/clipboard": "^1.5.1",
"@react-native-community/datetimepicker": "^3.0.2",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/netinfo": "^5.9.10",
"@react-native-community/push-notification-ios": "^1.8.0",
"apollo-boost": "^0.4.4",
"apollo-cache-persist": "^0.1.1",
"apollo-client": "^2.6.4",
"apollo-link": "latest",
"apollo-link-context": "latest",
"apollo-link-timeout": "^1.4.0",
"apollo-link-token-refresh": "^0.2.7",
"apollo-link-ws": "^1.0.20",
"apollo-upload-client": "^12.1.0",
"appcenter": "3.0.0",
"appcenter-analytics": "3.0.0",
"appcenter-crashes": "3.0.0",
"axios": "^0.19.0",
"compare-versions": "^3.6.0",
"graphql": "^14.5.8",
"graphql-tag": "^2.10.1",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"progress-hud": "latest",
"react": "16.9.0",
"react-apollo": "^3.1.3",
"react-native": "0.61.3",
"react-native-camera": "^3.21.0",
"react-native-code-push": "^6.2.0",
"react-native-collapsible": "^1.5.2",
"react-native-config": "^1.0.0",
"react-native-device-info": "^6.2.0",
"react-native-elements": "^1.2.7",
"react-native-exit-app": "^1.1.0",
"react-native-fs": "^2.16.2",
"react-native-gesture-handler": "^1.5.0",
"react-native-highlight-words": "^1.0.1",
"react-native-image-picker": "^2.3.1",
"react-native-image-resizer": "^1.2.1",
"react-native-image-zoom-viewer": "^3.0.1",
"react-native-input-scroll-view": "^1.9.5",
"react-native-iphone-x-helper": "latest",
"react-native-linear-gradient": "^2.5.6",
"react-native-maps": "0.27.1",
"react-native-masked-text": "^1.13.0",
"react-native-material-textfield": "^0.16.1",
"react-native-material-textfield-label-fixed": "zakharchenkoAndrii/react-native-material-textfield-label-fixed",
"react-native-parsed-text": "^0.0.21",
"react-native-permissions": "^2.0.10",
"react-native-push-notification": "^7.3.1",
"react-native-rate": "^1.2.4",
"react-native-raw-bottom-sheet": "^2.0.6",
"react-native-reanimated": "^1.4.0",
"react-native-responsive-fontsize": "^0.4.3",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.0.3",
"react-native-svg-uri": "^1.2.3",
"react-native-swipe-list-view": "^2.0.5",
"react-native-vector-icons": "^8.0.0",
"react-native-webview": "latest",
"react-navigation": "^4.0.10",
"react-navigation-animated-switch": "latest",
"react-navigation-drawer": "^2.3.3",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.10.1",
"rn-fetch-blob": "^0.12.0",
"subscriptions-transport-ws": "^0.9.18",
"tipsi-stripe": "^8.0.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/runtime": "^7.7.7",
"@react-native-community/eslint-config": "^0.0.5",
"@types/lodash": "^4.14.146",
"@types/react": "^16.9.11",
"@types/react-native": "^0.60.22",
"@types/react-native-material-textfield": "^0.16.3",
"babel-jest": "^24.9.0",
"eslint": "^6.6.0",
"jest": "^24.9.0",
"metro-react-native-babel-preset": "^0.57.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-typescript-transformer": "^1.2.13",
"react-test-renderer": "16.9.0",
"typescript": "^3.7.2"
},
"jest": {
"preset": "react-native"
}
}