forked from kvnp/youtune
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.92 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
{
"name": "youtune",
"version": "0.0.1",
"author": "Kevin Pfeifer <[email protected]>",
"repository": "github:kvnp/youtune-reactnative",
"license": "GPL-3.0",
"engines": {
"node": "17.x",
"npm": "8.x"
},
"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 && rmdir /s /q src",
"postinstall:default": "cd ./node_modules/react-native-track-player/ && npm install && rm -rf ./node_modules && rm -rf ./src",
"test": "npx jest",
"lint": "npx eslint ."
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.17.10",
"@react-native-community/slider": "^4.3.2",
"@react-native-masked-view/masked-view": "^0.2.8",
"@react-navigation/material-top-tabs": "^6.3.0",
"@react-navigation/native": "^6.0.13",
"@react-navigation/stack": "^6.3.2",
"@types/react": "^18.0.21",
"@types/react-native": "^0.70.6",
"express": "^4.18.2",
"jsdom": "^20.0.1",
"queue-promise": "^2.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-native": "0.68.2",
"react-native-gesture-handler": "^1.10.3",
"react-native-linear-gradient": "github:react-native-linear-gradient/react-native-linear-gradient",
"react-native-pager-view": "^6.0.1",
"react-native-paper": "^5.0.0-rc.3",
"react-native-reanimated": "^2.11.0",
"react-native-safe-area-context": "^4.4.1",
"react-native-screens": "^3.18.2",
"react-native-tab-view": "^3.3.0",
"react-native-track-player": "github:kvnp/react-native-track-player",
"react-native-typescript-transformer": "^1.2.13",
"react-native-vector-icons": "^9.2.0",
"react-native-web": "^0.18.9",
"react-native-web-linear-gradient": "^1.1.2",
"react-native-windows": "0.68.0",
"rn-sliding-up-panel": "^2.4.6",
"ts-loader": "^9.4.1",
"typescript": "^4.8.4"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/runtime": "^7.19.4",
"@react-native-community/eslint-config": "^3.1.0",
"babel-jest": "^29.2.1",
"babel-loader": "^8.2.5",
"babel-plugin-react-native-web": "^0.18.9",
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
"babel-plugin-transform-remove-console": "^6.9.4",
"css-minimizer-webpack-plugin": "^4.2.2",
"eslint": "^8.25.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"http-proxy-middleware": "^2.0.6",
"jest": "^29.2.1",
"metro-config": "^0.73.2",
"metro-react-native-babel-preset": "^0.73.2",
"react-native-codegen": "^0.71.0",
"react-style-proptype": "^3.2.2",
"react-test-renderer": "^18.2.0",
"run-script-os": "^1.1.6",
"webpack": "^5.76.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1",
"webpack-pwa-manifest": "^4.3.0",
"workbox-webpack-plugin": "^6.5.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
]
}
}