This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
141 lines (141 loc) · 5.47 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
{
"name": "spotifyclone",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"runAndroid:debug": "react-native run-android",
"runAndroid:debugRelease": "react-native run-android --variant=release",
"makeAPK": "cd android && ./gradlew assembleRelease",
"runiOS:debug": "react-native run-ios",
"runiOS:debugRelease": "react-native run-ios --configuration Release",
"detox-build:androidDebug": "detox build -c android.emu.debug",
"detox-build:androidRelease": "detox build -c android.emu.release",
"detox-test:androidDebug": "detox test -c android.emu.debug",
"detox-test:androidDebug:reuse": "detox test -c android.emu.debug --reuse",
"detox-test:androidRelease": "detox test -c android.emu.release",
"detox-build:iosDebug": "detox build -c ios.sim.debug",
"detox-build:iosRelease": "detox build -c ios.sim.release",
"detox-test:iosDebug": "detox test -c ios.sim.debug",
"detox-test:iosDebug:reuse": "detox test -c ios.sim.debug --reuse",
"detox-test:iosRelease": "detox test -c ios.sim.release",
"test": "jest",
"bump-patch": "npm version patch --no-git-tag-version && bundle exec fastlane bump",
"bump-minor": "npm version minor --no-git-tag-version && bundle exec fastlane bump",
"bump-major": "npm version major --no-git-tag-version && bundle exec fastlane bump",
"makeIcons": "bundle exec fastlane make_badge",
"validateTypeScript": "tsc --noEmit",
"uninstallAndroid": "adb uninstall com.spotifyclone",
"clearAndroid": "adb shell pm clear com.spotifyclone",
"uninstalliOS": "xcrun simctl uninstall booted com.osamaq.reactnative.spotify",
"runPixel3a": "emulator @Pixel_3a_XL_API_29",
"runIphone8": "react-native run-ios --simulator=\"iPhone 8\"",
"runIpadAir": "react-native run-ios --simulator=\"iPad Air\"",
"adb-metro": "adb reverse tcp:8081 tcp:8081",
"adb-reactotron": "adb reverse tcp:9090 tcp:9090"
},
"dependencies": {
"@react-native-community/async-storage": "^1.6.2",
"@react-native-community/netinfo": "^5.3.3",
"@reduxjs/toolkit": "^1.2.5",
"detox": "^16.0.0",
"react": "16.8.1",
"react-native": "0.61.5",
"react-native-fast-image": "^7.0.2",
"react-native-gesture-handler": "^1.5.1",
"react-native-image-colors": "^1.1.3",
"react-native-linear-gradient": "^2.5.6",
"react-native-paper": "^3.6.0",
"react-native-reanimated": "^1.3.0",
"react-native-redash": "^10.0.1",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-splash-screen": "^3.2.0",
"react-native-svg": "^12.0.3",
"react-native-vector-icons": "^6.6.0",
"react-native-webview": "^7.4.0",
"react-navigation": "^4.0.10",
"react-navigation-animated-switch": "^0.4.1",
"react-navigation-material-bottom-tabs": "^2.2.2",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.5.6",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-observable": "^1.2.0",
"redux-persist": "^6.0.0",
"rxjs": "^6.5.4"
},
"resolutions": {
"@react-native-community/cli-platform-ios": "4.13.0"
},
"devDependencies": {
"@babel/core": "^7.5.0",
"@babel/runtime": "^7.5.0",
"@types/jest": "^24.0.18",
"@types/react": "16.8.19",
"@types/react-native": "0.60.15",
"@types/react-native-vector-icons": "^6.4.2",
"@types/react-redux": "^7.1.4",
"@types/react-test-renderer": "16.8.1",
"@typescript-eslint/eslint-plugin": "^2.3.1",
"@typescript-eslint/parser": "^2.3.1",
"babel-jest": "^24.1.0",
"eslint": "^6.4.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-react": "^7.14.3",
"eslint-plugin-react-hooks": "^2.0.1",
"jest": "^24.1.0",
"metro-react-native-babel-preset": "^0.51.1",
"react-test-renderer": "16.8.1",
"reactotron-react-native": "^4.0.3",
"reactotron-redux": "^3.1.2",
"typescript": "3.7.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"detox": {
"test-runner": "jest",
"configurations": {
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Nexus_5X_API_29"
}
},
"android.emu.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..",
"type": "android.emulator",
"device": {
"avdName": "Nexus_5X_API_29"
}
},
"ios.sim.debug": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Spotify Lite.app",
"build": "xcodebuild -workspace ios/spotifyclone.xcworkspace -scheme spotifyclone -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
},
"ios.sim.release": {
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/Spotify Lite.app",
"build": "xcodebuild -workspace ios/spotifyclone.xcworkspace -scheme spotifyclone -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11"
}
}
}
}
}