-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 4.13 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
{
"name": "react-native-with-moxy",
"version": "0.0.0",
"description": "The https://play.google.com/store/apps/details?id=<package> Android and https://apps.apple.com/us/app/<name>/id<AppleID> iOS apps",
"author": "MOXY <[email protected]>",
"private": true,
"license": "UNLICENSED",
"keywords": [
"app",
"react",
"native",
"mobile"
],
"repository": {
"type": "git",
"url": "[email protected]:{project-org}/{project-name}"
},
"scripts": {
"start:ios:dev": "react-native run-ios --configuration Debug --scheme 'reactNativeWithMoxy Dev'",
"start:ios:prod": "react-native run-ios --configuration Release --scheme 'reactNativeWithMoxy Prod'",
"start:android:dev": "react-native run-android --variant debug",
"start:android:prod": "react-native run-android --variant release",
"bundle:ios:js:prod": "react-native bundle --platform ios --dev false --entry-file index.js --bundle-output ./ios/index.ios.bundle --sourcemap-output ios.bundle.map",
"bundle:android:js:prod": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output ./android/app/src/main/assets/index.android.bundle --sourcemap-output android.bundle.map",
"build:android:aab": "cd android && ./gradlew bundleRelease || cd -",
"build:android:apk": "npm run bundle:android:js:prod && cd android && ./gradlew assembleRelease || cd -",
"list:ios:simulators": "xcrun simctl list devices",
"list:android:simulators": "avdmanager list avd 2>/dev/null || emulator -list-avds 2>/dev/null || echo 'Not found in PATH: avdmanager and emulator'",
"list:android:devices": "adb devices 2>/dev/null || echo 'Not found in PATH: adb",
"sourcemap:ios:resolve": "source-map resolve ios.bundle.map",
"sourcemap:android:resolve": "source-map resolve android.bundle.map",
"clean:ios": "cd ios/ && xcodebuild clean && rimraf Pods/ || cd -",
"clean:android": "cd android/ && ./gradlew clean || cd -",
"clean": "npm run clean:ios && npm run clean:android",
"pods": "cd ios/ && pod install || cd -",
"prerelease": "npm run bundle:android:js:prod && npm run bundle:ios:js:prod",
"release": "standard-version",
"postrelease": "git push --follow-tags origin HEAD",
"lint": "eslint --ignore-path .gitignore .",
"test": "NODE_ICU_DATA=node_modules/full-icu jest",
"docs": "npm run start --prefix docusaurus -- --port 4000",
"postinstall": "patch-package && npm run pods"
},
"dependencies": {
"@react-native-community/masked-view": "^0.1.7",
"@react-navigation/native": "^5.0.9",
"@react-navigation/stack": "^5.1.1",
"hoist-non-react-statics": "^3.3.2",
"react": "16.9.0",
"react-intl": "^4.5.0",
"react-native": "0.61.5",
"react-native-bootsplash": "^2.1.0",
"react-native-config": "^0.12.0",
"react-native-gesture-handler": "^1.6.0",
"react-native-localize": "^1.4.0",
"react-native-reanimated": "^1.7.0",
"react-native-safe-area-context": "^0.7.3",
"react-native-safe-area-view": "^1.1.1",
"react-native-screens": "^2.3.0",
"react-native-svg": "^12.0.3"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.0.0",
"@moxy/eslint-config-babel": "^12.3.0",
"@moxy/eslint-config-base": "^12.2.0",
"@moxy/eslint-config-jest": "^12.3.0",
"@moxy/eslint-config-react": "^12.3.0",
"@moxy/eslint-config-react-native": "^12.3.1",
"@moxy/eslint-config-react-native-a11y": "^12.3.1",
"@moxy/jest-config-base": "^6.0.0",
"@moxy/jest-config-react-native": "^6.0.0",
"@moxy/jest-config-testing-library": "^6.0.0",
"@testing-library/react-native": "^7.0.0",
"babel-plugin-transform-remove-console": "^6.9.4",
"commitlint": "^8.0.0",
"eslint": "^6.8.0",
"full-icu": "^1.3.1",
"husky": "^4.2.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.0.0",
"lint-staged": "^10.0.2",
"metro-react-native-babel-preset": "^0.59.0",
"patch-package": "^6.2.2",
"react-native-svg-transformer": "^0.14.3",
"react-test-renderer": "16.9.0",
"rimraf": "^3.0.2",
"source-map-cli": "^1.0.0",
"standard-version": "^7.1.0"
},
"optionalDependencies": {
"ios-deploy": "^1.10.0"
}
}