-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 4.58 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
{
"name": "HornSense",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"server": "node node_modules/.bin/react-native start",
"ios": "./node_modules/.bin/react-native run-ios",
"android": "./node_modules/.bin/react-native run-android",
"lint": "eslint App.js app/**",
"test": "jest",
"eject-native-base": "node node_modules/native-base/ejectTheme.js",
"test-bundle": "react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/intermediates/assets/debug/index.android.bundle --assets-dest ./android/app/build/intermediates/res/merged/debug",
"test-build": "cd android && ./gradlew clean && ./gradlew assembleDebug",
"prod-bundle": "react-native bundle --platform android --dev false --entry-file ./index.js --bundle-output ./android/app/src/main/assets/index.android.bundle --assets-dest ./android/app/src/main/res",
"prod-build": "cd android && ./gradlew bundleRelease",
"postinstall": "jetify",
"ios-build": "cd ios && fastlane ios beta"
},
"dependencies": {
"@mauron85/react-native-background-geolocation": "^0.6.3",
"@react-native-community/art": "^1.1.2",
"@react-native-community/audio-toolkit": "^2.0.2",
"@react-native-community/geolocation": "^2.0.2",
"@react-native-community/netinfo": "^3.2.0",
"@react-native-community/push-notification-ios": "^1.0.5",
"@react-native-community/slider": "^2.0.8",
"chardet": "^0.4.0",
"color": "~0.11.1",
"d3-array": "^2.3.1",
"d3-scale": "^3.1.0",
"d3-shape": "^1.3.5",
"dayjs": "^1.8.26",
"dayspan": "^1.1.0",
"eslint-utils": "^1.4.1",
"expr-eval": "^1.2.2",
"hash-int": "^1.0.0",
"lodash-es": "^4.17.15",
"moment": "^2.24.0",
"native-base": "2.13.8",
"node-pre-gyp": "^0.10.0",
"object-to-formdata": "^1.5.2",
"prop-types": "^15.7.2",
"ramda": "^0.26.1",
"random-string": "^0.2.0",
"rc-input-number": "^3.6.8",
"react": "16.9.0",
"react-dom": "^16.9.0",
"react-native": "0.61.5",
"react-native-awesome-alerts": "^1.2.0",
"react-native-calendar-strip": "^1.3.8",
"react-native-camera": "^3.16.0",
"react-native-device-info": "^5.4.3",
"react-native-elements": "^1.2.7",
"react-native-firebase": "5.6.0",
"react-native-gesture-handler": "^1.4.1",
"react-native-image-picker": "^2.2.1",
"react-native-img-cache": "^1.6.0",
"react-native-localize": "^1.3.3",
"react-native-markdown-view": "https://github.com/shnizzedy/react-native-markdown-view.git",
"react-native-paper": "^3.10.1",
"react-native-permissions": "^2.0.9",
"react-native-progress": "^3.4.0",
"react-native-qrcode-scanner": "^1.3.1",
"react-native-reanimated": "^1.2.0",
"react-native-router-flux": "4.2.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-slider": "^0.11.0",
"react-native-svg": "^11.0.1",
"react-native-vector-icons": "6.6.0",
"react-native-webview": "7.5.2",
"react-redux": "^7.1.3",
"react-timer-mixin": "^0.13.4",
"redux": "^4.0.5",
"redux-form": "^8.2.6",
"redux-persist": "^5.10.0",
"redux-thunk": "^2.3.0",
"reselect": "^4.0.0",
"rn-fetch-blob": "^0.12.0",
"string-hash": "^1.1.3",
"styled-components": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/runtime": "^7.8.4",
"@react-native-community/eslint-config": "^0.0.7",
"babel-eslint": "^10.0.1",
"babel-jest": "^25.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"inliner": "https://github.com/shnizzedy/inliner.git",
"jest": "^25.1.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.58.0",
"react-devtools": "^3.6.3",
"react-test-renderer": "16.9.0",
"schedule": "0.4.0"
},
"jest": {
"preset": "react-native",
"transformIgnorePatterns": [
"node_modules/(?!(jest-)?react-native|@?react-navigation|react-navigation-redux-helpers|native-base|native-base-shoutem-theme|@shoutem/animation|@shoutem/ui|tcomb-form-native)"
]
}
}