-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
51 lines (51 loc) · 2.34 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
{
"name": "OpenDota",
"version": "1.2.2",
"private": true,
"scripts": {
"start": "react-native start",
"bundle-android": "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",
"clear": "npm cache verify && watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/react-native-packager-cache-* && rm -rf $TMPDIR/metro-bundler-cache-*",
"lint": "eslint app/*",
"actions-lint": "eslint app/actions",
"themes-lint": "eslint app/themes",
"stores-lint": "eslint app/stores",
"reducers-lint": "eslint app/reducers",
"json-lint": "eslint app/json",
"components-lint": "eslint app/components",
"containers-lint": "eslint app/containers",
"postinstall": "sed -i.bak 's/ TabRouter/ tabRouter/g' ./node_modules/react-navigation/src/navigators/DrawerNavigator.js && sed -i.bak 's/ StackRouter/ stackRouter/g' ./node_modules/react-navigation/src/navigators/StackNavigator.js && sed -i.bak 's/ TabRouter/ tabRouter/g' ./node_modules/react-navigation/src/navigators/TabNavigator.js && sed -i.bak 's/ SwitchRouter/ switchRouter/g' ./node_modules/react-navigation/src/navigators/SwitchNavigator.js"
},
"dependencies": {
"dotaconstants": "6.16.0",
"heatmap.js": "2.0.5",
"lodash": "4.17.11",
"moment": "2.24.0",
"react": "16.8.3",
"react-native": "0.59.10",
"react-native-device-info": "2.3.1",
"react-native-google-analytics-bridge": "6.1.0",
"react-native-keyboard-aware-scroll-view": "0.7.2",
"react-native-root-toast": "3.0.1",
"react-native-router-flux": "4.0.0-beta.31",
"react-native-scrollable-tab-view": "git+https://github.com/happypancake/react-native-scrollable-tab-view.git",
"react-native-simple-radio-button": "^2.7.1",
"react-native-slider": "0.11.0",
"react-native-svg": "9.5.3",
"react-native-svg-charts": "5.3.0",
"react-native-vector-icons": "5.0.0",
"react-redux": "5.0.6",
"redux": "3.7.2",
"redux-thunk": "2.2.0"
},
"devDependencies": {
"babel-eslint": "^8.0.3",
"metro-react-native-babel-preset": "0.54.1",
"eslint": "^4.13.1",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-react-native": "^3.2.0",
"redux-logger": "3.0.6",
"request": "2.88.0",
"react-test-renderer": "16.8.3"
}
}