forked from Pnlvfx/react-native-track-player
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.73 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.73 KB
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
{
"name": "example",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"android:ide": "open -a /Applications/Android\\ Studio.app ./android",
"android:uninstall": "adb uninstall com.example",
"android:release": "cd android && ./gradlew clean && ./gradlew bundleRelease && cd app/build/outputs/bundle/release && pwd && ls",
"android:install-release": "RD=android/app/build/outputs/bundle/release && (rm $RD/app.apks || true) && bundletool build-apks --bundle=$RD/app-release.aab --output=$RD/app.apks && (adb uninstall com.example || true) && bundletool install-apks --apks=$RD/app.apks",
"android:logs": "android/scripts/logs",
"ios": "react-native run-ios",
"ios:sim": "react-native run-ios --simulator=\"iPhone\"",
"ios:ide": "open ios/*.xcworkspace/",
"web:start": "craco start",
"web:build": "craco build",
"windows": "react-native run-windows",
"start": "react-native start",
"test": "jest",
"lint": "eslint src",
"format": "prettier --write src",
"types": "tsc --noEmit true",
"ci:lint": "eslint src --max-warnings=0",
"ci:format": "prettier --check src"
},
"dependencies": {
"@gorhom/bottom-sheet": "^4",
"@react-native-community/slider": "^4.4.2",
"@react-native-segmented-control/segmented-control": "^2.4.2",
"mux.js": "^7.0.0",
"react": "18.3.1",
"react-native": "^0.77",
"react-native-gesture-handler": "2.20.2",
"react-native-reanimated": "3.16.1",
"react-native-track-player": "link:../",
"react-native-vector-icons": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"@babel/runtime": "^7.25.0",
"@craco/craco": "^7.0.0",
"@dealmore/craco-plugin-babel-include": "^1.0.0",
"@react-native-community/cli": "15.0.0",
"@react-native-community/cli-platform-android": "15.0.0",
"@react-native-community/cli-platform-ios": "15.0.0",
"@react-native/babel-preset": "0.76.1",
"@react-native/eslint-config": "0.76.1",
"@react-native/metro-config": "0.76.1",
"@react-native/typescript-config": "0.76.1",
"@types/react": "^18.2.6",
"@types/react-native-vector-icons": "^6.4.14",
"@types/react-test-renderer": "^18.0.0",
"babel-jest": "^29.6.3",
"eslint": "^8.19.0",
"jest": "^29.6.3",
"prettier": "2.8.8",
"react-app-alias-ex": "^2.1.0",
"react-test-renderer": "18.3.1",
"typescript": "^5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=18"
},
"packageManager": "yarn@4.7.0"
}