forked from lyswhut/lx-music-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.34 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
{
"name": "lx-music-mobile",
"version": "0.14.3",
"versionCode": 46,
"scripts": {
"ar": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"sc": "react-native start --reset-cache",
"test": "jest",
"lint": "eslint .",
"rd": "react-devtools",
"menu": "adb shell input keyevent 82",
"bundle-android": "react-native bundle --platform android --dev true --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"pack:android:debug": "./gradlew assembleDebug",
"pack": "npm run pack:android",
"pack:android": "./gradlew assembleRelease",
"clear": "react-native clean-project",
"publish": "node publish",
"nodeify": "rn-nodeify --hack --install process,crypto,events,constant,console,stream,url,util",
"postinstall": "npm run nodeify"
},
"engines": {
"node": ">= 16",
"npm": ">= 8.5.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyswhut/lx-music-mobile.git"
},
"keywords": [
"music-player",
"react-native-app"
],
"author": {
"name": "lyswhut",
"email": "[email protected]"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lyswhut/lx-music-mobile/issues"
},
"homepage": "https://github.com/lyswhut/lx-music-mobile#readme",
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.9",
"@react-native-clipboard/clipboard": "^1.10.0",
"@react-native-community/checkbox": "^0.5.12",
"@react-native-community/slider": "^4.2.4",
"buffer": "^6.0.3",
"console-browserify": "^1.2.0",
"events": "^3.3.0",
"i18next": "^21.9.1",
"js-htmlencode": "^0.3.0",
"lrc-file-parser": "^2.0.0",
"pako": "^2.0.4",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"react": "17.0.2",
"react-i18next": "^11.18.4",
"react-native": "0.68.2",
"react-native-background-timer": "^2.4.1",
"react-native-crypto": "^2.2.0",
"react-native-exception-handler": "^2.10.10",
"react-native-fs": "^2.20.0",
"react-native-navigation": "^7.29.0",
"react-native-pager-view": "^5.4.25",
"react-native-randombytes": "^3.6.1",
"react-native-splash-screen": "^3.3.0",
"react-native-track-player": "git+https://github.com/lyswhut/react-native-track-player.git#5fb0bec8694d3783f32a1e4ed1251c163e9842f7",
"react-native-vector-icons": "^9.2.0",
"react-redux": "^8.0.2",
"readable-stream": "1.0.33",
"redux": "^4.2.0",
"redux-subscriber": "^1.1.0",
"redux-thunk": "^2.4.1",
"reselect": "^4.1.6",
"socket.io": "^4.5.1",
"stream-browserify": "^1.0.0",
"url": "~0.10.1",
"util": "~0.10.3"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/eslint-parser": "^7.18.9",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/runtime": "^7.18.9",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.1.0",
"changelog-parser": "^2.8.1",
"cross-env": "^7.0.3",
"eslint": "^8.22.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.67.0",
"react-native-clean-project": "^4.0.1",
"react-test-renderer": "17.0.2",
"redux-logger": "^3.0.6",
"rn-nodeify": "^10.3.0"
},
"jest": {
"preset": "react-native"
},
"react-native": {
"console": "console-browserify",
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
},
"browser": {
"console": "console-browserify",
"crypto": "react-native-crypto",
"_stream_transform": "readable-stream/transform",
"_stream_readable": "readable-stream/readable",
"_stream_writable": "readable-stream/writable",
"_stream_duplex": "readable-stream/duplex",
"_stream_passthrough": "readable-stream/passthrough",
"stream": "stream-browserify"
}
}