-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
249 lines (249 loc) · 10.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
{
"name": "@audius/mobile",
"version": "1.5.123",
"private": true,
"scripts": {
"android:dev": "ENVFILE=.env.dev turbo run android -- --mode=prodDebug",
"android:prod": "ENVFILE=.env.prod turbo run android -- --mode=prodDebug",
"android:release": "ENVFILE=.env.prod turbo run android -- --mode=prodRelease",
"android:stage": "ENVFILE=.env.stage turbo run android -- --mode=stagingDebug --appIdSuffix staging",
"android": "react-native run-android",
"build:e2e": "detox build --configuration ios.sim.debug",
"build:ios:stage": "xcodebuild -workspace ios/AudiusReactNative.xcworkspace -scheme Staging -sdk iphoneos -configuration AppStoreDistribution archive -archivePath $PWD/build/AudiusReactNative.xcarchive",
"build:ios": "xcodebuild -workspace ios/AudiusReactNative.xcworkspace -scheme AudiusReactNative -sdk iphoneos -configuration AppStoreDistribution archive -archivePath $PWD/build/AudiusReactNative.xcarchive",
"bundle:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios'",
"clean:auto": "react-native clean-project-auto",
"clean": "react-native-clean-project",
"codepush-android-history:prod": "appcenter codepush deployment history -a Audius-Music/Audius-Android Production",
"codepush-android-history:rc": "appcenter codepush deployment history -a Audius-Music/Audius-Android ReleaseCandidate",
"codepush-android-history:staging": "appcenter codepush deployment history -a Audius-Music/Audius-Android Staging",
"codepush-ios-history:prod": "appcenter codepush deployment history -a Audius-Music/Audius Production",
"codepush-ios-history:rc": "appcenter codepush deployment history -a Audius-Music/Audius ReleaseCandidate",
"codepush-ios-history:staging": "appcenter codepush deployment history -a Audius-Music/Audius Staging",
"export:ios": "xcodebuild -exportArchive -archivePath $PWD/build/AudiusReactNative.xcarchive -exportOptionsPlist ios/exportOptions.plist -exportPath $PWD/build -allowProvisioningUpdates",
"ios:bump-build-number": "fastlane run increment_build_number xcodeproj:\"ios/AudiusReactNative.xcodeproj\"",
"ios:dev": "ENVFILE=.env.dev turbo run ios -- --scheme 'Dev' --simulator \"iPhone 16 Pro\"",
"ios:device:dev": "ENVFILE=.env.dev turbo run ios -- --scheme 'Dev' --device",
"ios:device:prod": "ENVFILE=.env.prod turbo run ios -- --scheme 'AudiusReactNative' --device",
"ios:device:stage": "ENVFILE=.env.stage turbo run ios -- --scheme 'Staging' --mode Staging.Debug --device",
"ios:prod": "ENVFILE=.env.prod turbo run ios -- --scheme 'AudiusReactNative' --simulator \"iPhone 16 Pro\"",
"ios:release": "turbo run ios -- --simulator \"iPhone 16 Pro\" --mode Release",
"ios:stage": "ENVFILE=.env.stage turbo run ios -- --scheme 'Staging' --mode Staging.Debug --simulator \"iPhone 16 Pro\"",
"ios:update-signing-cert": "cd ios && fastlane match development -a co.audius.audiusmusic,co.audius.audiusmusic.staging && cd ..",
"ios:version-patch": "fastlane run increment_version_number xcodeproj:\"ios/AudiusReactNative.xcodeproj\"",
"ios": "react-native run-ios",
"jetifier": "jetifier",
"lint:fix": "eslint --cache --fix --ext=js,jsx,ts,tsx src",
"lint": "eslint --cache --ext=js,jsx,ts,tsx src",
"lint:env": "dotenv-linter",
"react-devtools": "npx react-devtools",
"redux-devtools": "redux-devtools --port=8000 --open",
"start:e2e": "RN_E2E=true react-native start",
"start:storybook": "RN_STORYBOOK=true react-native start",
"start": "react-native start --experimental-debugger",
"storybook-generate": "sb-rn-get-stories",
"storybook-watch": "sb-rn-watcher",
"test:e2e": "detox test --configuration ios.sim.debug #.test.ts",
"test": "jest src",
"typecheck:trace": "tsc --generateTrace tsc_trace",
"typecheck:watch": "tsc --watch",
"typecheck": "tsc",
"upgrade": "react-native upgrade",
"upload:ios": "xcrun altool --upload-app -type ios --file build/AudiusReactNative.ipa --username $APPLE_ID --password $APPLE_ID_PASSWORD",
"verify": "concurrently \"npm:typecheck\" \"npm:lint\" \"npm:lint:env\""
},
"dependencies": {
"@amplitude/analytics-react-native": "1.4.11",
"@audius/common": "*",
"@audius/fetch-nft": "0.2.8",
"@audius/fixed-decimal": "*",
"@audius/harmony": "*",
"@audius/sdk": "*",
"@coinflowlabs/react-native": "4.0.1",
"@emotion/native": "11.11.0",
"@emotion/react": "11.11.1",
"@fingerprintjs/fingerprintjs-pro-react-native": "2.6.0",
"@gorhom/bottom-sheet": "4.6.4",
"@gorhom/portal": "1.0.9",
"@hcaptcha/react-native-hcaptcha": "1.6.0",
"@noble/hashes": "1.1.5",
"@noble/secp256k1": "1.7.0",
"@optimizely/optimizely-sdk": "4.9.2",
"@peculiar/webcrypto": "1.4.3",
"@react-native-async-storage/async-storage": "1.21.0",
"@react-native-clipboard/clipboard": "1.13.2",
"@react-native-community/blur": "4.4.1",
"@react-native-community/datetimepicker": "7.6.2",
"@react-native-community/hooks": "3.0.0",
"@react-native-community/netinfo": "11.2.1",
"@react-native-community/slider": "4.5.0",
"@react-native-cookies/cookies": "6.2.1",
"@react-native-masked-view/masked-view": "0.3.1",
"@react-navigation/bottom-tabs": "6.5.11",
"@react-navigation/drawer": "6.6.6",
"@react-navigation/material-top-tabs": "6.6.5",
"@react-navigation/native": "6.1.9",
"@react-navigation/native-stack": "6.9.17",
"@react-navigation/stack": "6.3.20",
"@redux-devtools/remote": "0.8.0",
"@reduxjs/toolkit": "1.6.1",
"@sayem314/react-native-keep-awake": "1.2.2",
"@sentry/react-native": "6.4.0",
"@snapchat/snap-kit-react-native": "0.4.0",
"@solana-mobile/mobile-wallet-adapter-protocol": "0.9.9",
"@solana-mobile/mobile-wallet-adapter-protocol-web3js": "0.9.9",
"@solana/web3.js": "1.98.0",
"@stripe/crypto": "0.0.4",
"@stripe/stripe-js": "1.54.1",
"@tanstack/react-query": "5.62.7",
"@walletconnect/react-native-dapp": "1.8.0",
"array.prototype.flat": "1.2.5",
"big-integer": "1.6.51",
"bn.js": "5.2.0",
"bs58": "5.0.0",
"color": "4.2.3",
"dayjs": "1.10.7",
"expo-crypto": "9.2.0",
"ffmpeg-kit-react-native": "6.0.2",
"formik": "2.4.6",
"fxa-common-password-list": "0.0.4",
"jimp": "0.14.0",
"linkifyjs": "4.1.0",
"lodash.samplesize": "4.2.0",
"lottie-react-native": "7.1.0",
"moment": "2.24.0",
"node-libs-react-native": "1.2.1",
"numeral": "2.0.6",
"path-dirname": "1.0.2",
"promise": "8.3.0",
"query-string": "7.0.1",
"react": "18.3.1",
"react-native": "0.75.4",
"react-native-autolink": "4.2.0",
"react-native-bars": "2.4.2",
"react-native-blob-util": "0.19.4",
"react-native-bootsplash": "6.3.2",
"react-native-code-push": "9.0.0",
"react-native-collapsible-tab-view": "2.0.2",
"react-native-config": "1.5.1",
"react-native-create-thumbnail": "2.0.0",
"react-native-document-picker": "9.1.0",
"react-native-draggable-flatlist": "4.0.1",
"react-native-dynamic": "1.0.0",
"react-native-fast-crypto": "2.2.0",
"react-native-fast-image": "8.6.3",
"react-native-fs": "2.20.0",
"react-native-gesture-handler": "2.14.0",
"react-native-get-random-values": "1.10.0",
"react-native-google-cast": "4.6.2",
"react-native-haptic-feedback": "2.2.0",
"react-native-image-crop-picker": "0.42.0",
"react-native-image-picker": "7.2.3",
"react-native-in-app-review": "4.3.3",
"react-native-inset-shadow": "1.0.3",
"react-native-keyboard-aware-scroll-view": "0.9.5",
"react-native-linear-gradient": "2.8.3",
"react-native-markdown-display": "7.0.2",
"react-native-modal": "13.0.1",
"react-native-modal-datetime-picker": "17.1.0",
"react-native-notifications": "5.1.0",
"react-native-pager-view": "6.4.0",
"react-native-permissions": "4.0.1",
"react-native-qrcode-svg": "6.2.0",
"react-native-radial-gradient": "1.1.4",
"react-native-randombytes": "3.6.1",
"react-native-reanimated": "3.15.0",
"react-native-restart": "0.0.27",
"react-native-safe-area-context": "4.10.0",
"react-native-screens": "3.35.0",
"react-native-share": "10.0.2",
"react-native-svg": "15.10.1",
"react-native-svg-transformer": "1.5.0",
"react-native-tab-view": "3.5.2",
"react-native-tiktok": "^1.1.2",
"react-native-track-player": "4.0.1",
"react-native-url-polyfill": "2.0.0",
"react-native-version-number": "0.3.6",
"react-native-video": "6.0.0",
"react-native-view-shot": "3.8.0",
"react-native-webview": "13.6.3",
"react-native-zip-archive": "7.0.1",
"react-qr-code": "2.0.12",
"react-redux": "8.0.5",
"react-use": "17.3.2",
"redux": "4.1.1",
"redux-persist": "6.0.0",
"redux-saga": "1.1.3",
"redux-thunk": "2.4.2",
"reselect": "4.0.0",
"semver": "7.3.7",
"stream-browserify": "3.0.0",
"text-encoding-polyfill": "0.6.7",
"tls-browserify": "0.2.2",
"tweetnacl": "1.0.3",
"type-fest": "4.26.1",
"typed-redux-saga": "1.3.1",
"zod-formik-adapter": "1.2.0"
},
"optionalDependencies": {
"ios-deploy": "1.11.4"
},
"devDependencies": {
"@audius/dotenv-linter": "*",
"@babel/core": "7.21.0",
"@babel/plugin-transform-export-namespace-from": "7.23.4",
"@babel/plugin-transform-react-jsx": "7.21.0",
"@babel/preset-env": "7.20.2",
"@babel/runtime": "7.21.0",
"@react-native/babel-preset": "0.75.4",
"@react-native/eslint-config": "0.75.4",
"@react-native/metro-babel-transformer": "0.75.4",
"@react-native/metro-config": "0.75.4",
"@react-native/typescript-config": "0.75.4",
"@redux-devtools/cli": "4.0.0",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-controls": "6.5.16",
"@storybook/addon-ondevice-actions": "6.5.7",
"@storybook/addon-ondevice-backgrounds": "6.5.7",
"@storybook/addon-ondevice-controls": "6.5.7",
"@storybook/react-native": "6.5.7",
"@testing-library/jest-native": "5.4.3",
"@testing-library/react-native": "12.4.3",
"@types/array.prototype.flat": "1.2.1",
"@types/bn.js": "5.1.0",
"@types/color": "^3.0.6",
"@types/lodash.samplesize": "4.2.6",
"@types/node": "12.20.27",
"@types/numeral": "2.0.2",
"@types/react": "18.3.1",
"@types/react-native-video": "5.0.19",
"babel-jest": "29.6.3",
"babel-loader": "8.3.0",
"babel-plugin-macros": "3.1.0",
"babel-plugin-module-resolver": "5.0.0",
"babel-plugin-transform-remove-console": "6.9.4",
"detox": "20.12.1",
"eslint": "8.56.0",
"jest": "29.7.0",
"jetifier": "1.6.8",
"prettier": "3.4.2",
"react-native-clean-project": "4.0.3",
"react-test-renderer": "18.3.1",
"replace-in-file": "6.3.5",
"typescript": "5.0.4"
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}