-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
100 lines (100 loc) · 4.12 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
{
"name": "youtune",
"version": "0.0.1",
"author": "Kevin Pfeifer <[email protected]>",
"repository": "github:kvnp/youtune-reactnative",
"license": "GPL-3.0",
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios",
"windows": "react-native run-windows",
"bundle": "npx react-native start",
"start": "run-script-os",
"start:windows": "SET NODE_ENV=production&& npx webpack && node ./web/bin/www",
"start:default": "export NODE_ENV=production && npx webpack && node ./web/bin/www",
"web": "run-script-os",
"web:windows": "SET NODE_ENV=development&& npx webpack serve",
"web:default": "export NODE_ENV=development && npx webpack serve",
"postinstall": "run-script-os",
"postinstall:windows": "cd node_modules/react-native-track-player && npm install && rmdir /s /q node_modules",
"postinstall:default": "cd ./node_modules/react-native-track-player/ && npm install && rm -rf ./node_modules",
"test": "npx jest",
"lint": "npx eslint ."
},
"dependencies": {
"@miblanchard/react-native-slider": "^2.6.0",
"@react-native-async-storage/async-storage": "^2.0.0",
"@react-native-masked-view/masked-view": "^0.3.1",
"@react-navigation/material-top-tabs": "^6.6.14",
"@react-navigation/native": "^6.1.18",
"@react-navigation/stack": "^6.4.1",
"express": "^4.19.2",
"jsdom": "^24.1.1",
"queue-promise": "^2.2.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-native": "0.75.2",
"react-native-linear-gradient": "github:react-native-linear-gradient/react-native-linear-gradient",
"react-native-pager-view": "^6.4.0",
"react-native-paper": "^5.12.5",
"react-native-safe-area-context": "^4.10.9",
"react-native-screens": "^3.34.0",
"react-native-tab-view": "^3.5.2",
"react-native-track-player": "github:kvnp/react-native-track-player",
"react-native-vector-icons": "^10.1.0",
"react-native-web": "^0.19.12",
"react-native-web-linear-gradient": "^1.1.2",
"react-native-windows": "0.75.0",
"rn-sliding-up-panel": "^2.4.6",
"util": "^0.12.5",
"youtune": "file:",
"ytmusic-api": "^5.2.2"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/preset-env": "^7.25.4",
"@babel/preset-react": "^7.24.7",
"@babel/runtime": "^7.25.4",
"@react-native-community/eslint-config": "^3.2.0",
"@types/chrome": "^0.0.270",
"@types/chromecast-caf-sender": "^1.0.10",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.4",
"@types/react-native": "^0.73.0",
"@types/react-native-vector-icons": "^6.4.18",
"@types/react-test-renderer": "^18.3.0",
"ajv": "^8.17.1",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"babel-plugin-react-native-web": "^0.19.12",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-remove-console": "^6.9.4",
"css-minimizer-webpack-plugin": "^7.0.0",
"eslint": "^9.9.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.0",
"http-proxy-middleware": "^3.0.0",
"jest": "^29.7.0",
"metro-config": "^0.80.10",
"metro-react-native-babel-preset": "^0.77.0",
"react-native-codegen": "^0.70.7",
"react-native-typescript-transformer": "^1.2.13",
"react-style-proptype": "^3.2.2",
"react-test-renderer": "^18.3.1",
"run-script-os": "^1.1.6",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^7.1.0"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
]
}
}