-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
75 lines (75 loc) · 2.9 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
{
"name": "TWAQI",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"build-android": "npm run release-android; osascript -e 'display notification \"DONE!\" with title \"Android built\"'",
"bundle-android": "$NVM_BIN/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/",
"release-android": "cd android && ./gradlew assembleRelease && cd ..",
"install-android": "adb uninstall com.kfpun.twaqi && adb install android/app/build/outputs/apk/release/app-release.apk",
"uninstall-android": "adb uninstall com.kfpun.twaqi",
"capture-android": "adb shell screencap /sdcard/temp.png && adb pull /sdcard/temp.png screenshot.png",
"post-install": "cd node_modules/react-native/scripts && ./ios-install-third-party.sh && cd ../../../ && cd node_modules/react-native/third-party/glog-0.3.5/ && ../../scripts/ios-configure-glog.sh && cd ../../../../",
"test": "jest",
"precommit": "lint-staged"
},
"lint-staged": {
"src/**/*.{js,json,css}": [
"prettier --write",
"git add"
],
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"analytics-react-native": "^1.2.0",
"fuse.js": "^3.3.0",
"moment": "^2.22.2",
"prop-types": "^15.6.2",
"react": "16.6.0-alpha.8af6728",
"react-native": "0.57.4",
"react-native-animatable": "^1.3.0",
"react-native-collapsible": "^1.3.0",
"react-native-device-info": "^0.24.3",
"react-native-fabric": "corymsmith/react-native-fabric",
"react-native-firebase": "^5.1.0",
"react-native-i18n": "^2.0.15",
"react-native-iap": "^2.4.1",
"react-native-maps": "0.21.0",
"react-native-modal": "^9.0.0",
"react-native-modal-datetime-picker": "^6.0.0",
"react-native-onesignal": "geektimecoil/react-native-onesignal",
"react-native-quick-actions": "^0.3.7",
"react-native-restart": "^0.0.9",
"react-native-safari-view": "^2.1.0",
"react-native-search-box": "^0.0.19",
"react-native-simple-store": "^1.3.0",
"react-native-star-rating": "^1.1.0",
"react-native-store-review": "^0.1.5",
"react-native-svg": "^6.5.0",
"react-native-typography": "^1.4.0",
"react-native-vector-icons": "^6.0.2",
"react-native-view-shot": "^2.5.0",
"react-navigation": "^2.18.2",
"rn-viewpager": "^1.2.9",
"victory-native": "^30.6.0"
},
"devDependencies": {
"babel-jest": "23.6.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"husky": "^1.3.1",
"jest": "23.6.0",
"lint-staged": "^8.1.0",
"metro-react-native-babel-preset": "0.49.0",
"prettier": "^1.15.3",
"react-test-renderer": "16.6.0-alpha.8af6728"
},
"jest": {
"preset": "react-native"
}
}