This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 217
/
Copy pathpackage.json
104 lines (104 loc) · 4.27 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
{
"name": "SwagLabsMobileApp",
"version": "2.7.1",
"private": true,
"scripts": {
"start": "react-native start",
"lint": "eslint .",
"clean": "react-native-clean-project",
"clear.cache": "watchman watch-del-all && rm -rf $TMPDIR/react-* && rm -rf $TMPDIR/metro* && rm -rf $TMPDIR/haste-*",
"prepush": "npm run lint",
"test": "jest",
"android.clean": "cd android && ./gradlew clean && cd .. ",
"android.dev": "yarn android.clean && react-native run-android",
"android.release": "cd android && ./gradlew clean && ./gradlew assembleRelease",
"android.test.local.dev": "wdio tests/e2e/config/wdio.android.local.dev.conf.js",
"android.test.local.emu": "wdio tests/e2e/config/wdio.android.local.emu.conf.js",
"android.test.sauce.emu": "wdio tests/e2e/config/wdio.android.sauce.emu.conf.js",
"android.test.rdc": "RDC=true wdio ./tests/e2e/config/wdio.android.rdc.conf.js",
"android.debug.build": "yarn android.clean && yarn 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",
"android.espresso": "yarn android.debug.build && cd android && ./gradlew assembleDebug && ./gradlew assembleAndroidTest",
"ios.dev": "react-native run-ios",
"ios.release.sim.build": "react-native run-ios --configuration Release",
"ios.test.local.dev": "wdio tests/e2e/config/wdio.ios.local.dev.conf.js",
"ios.test.local.sim": "wdio tests/e2e/config/wdio.ios.local.sim.conf.js",
"ios.test.sauce.sim": "wdio tests/e2e/config/wdio.ios.sauce.sim.conf.js",
"ios.test.rdc": "RDC=true wdio ./tests/e2e/config/wdio.ios.rdc.conf.js",
"ios.xcuitest": "cd scripts && ./build_xcuitest.sh && cd ..",
"ios.pods": "cd ios && pod install && cd ..",
"postversion": "react-native-version"
},
"dependencies": {
"@react-native-community/async-storage": "^1.7.1",
"@react-native-community/cameraroll": "^4.0.1",
"@react-native-community/masked-view": "^0.1.10",
"i18n-js": "^3.8.0",
"postinstall-postinstall": "^2.1.0",
"react": "17.0.1",
"react-native": "0.63.4",
"react-native-biometrics": "^2.1.4",
"react-native-camera": "^3.42.0",
"react-native-elements": "^3.1.0",
"react-native-fs": "^2.16.6",
"react-native-geolocation-service": "^5.1.1",
"react-native-gesture-handler": "^1.9.0",
"react-native-localize": "^2.0.1",
"react-native-modal-selector": "^2.0.3",
"react-native-permissions": "^3.0.0",
"react-native-qrcode-scanner": "^1.6.0",
"react-native-quick-actions": "^0.3.13",
"react-native-reanimated": "^1.13.2",
"react-native-safe-area-context": "^3.1.9",
"react-native-screens": "^2.16.1",
"react-native-signature-canvas": "^3.3.0",
"react-native-splash-screen": "^3.2.0",
"react-native-vector-icons": "^7.1.0",
"react-native-webview": "^11.0.2",
"react-navigation": "^4.4.3",
"react-navigation-drawer": "^1.4.0",
"react-navigation-stack": "^1.7.3",
"rn-fetch-blob": "^0.12.0",
"sync-storage": "^0.4.2"
},
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/register": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^1.1.0",
"@wdio/appium-service": "^6.12.1",
"@wdio/cli": "^6.12.1",
"@wdio/jasmine-framework": "^6.11.0",
"@wdio/local-runner": "^6.12.1",
"@wdio/sauce-service": "^6.12.1",
"@wdio/spec-reporter": "^6.11.0",
"@wdio/sync": "^6.11.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^25.1.0",
"eslint": "^6.5.1",
"eslint-config-fb-strict": "^24.3.0",
"eslint-config-fbjs": "^3.1.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-flowtype": "^4.5.3",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-native": "^3.8.1",
"husky": "^3.1.0",
"jest": "^25.1.0",
"jetifier": "^1.6.5",
"metro-react-native-babel-preset": "^0.59.0",
"react-native-clean-project": "^3.3.0",
"react-native-version": "^4.0.0",
"react-test-renderer": "16.13.1",
"yargs": "^15.0.2"
},
"husky": {
"hooks": {
"pre-push": "yarn lint"
}
},
"jest": {
"preset": "react-native"
}
}