2020-06-16 17:51:51 +02:00
|
|
|
{
|
|
|
|
|
"name": "JellyfinAudioPlayer",
|
|
|
|
|
"version": "0.0.1",
|
|
|
|
|
"main": "src/index.ts",
|
|
|
|
|
"private": true,
|
|
|
|
|
"scripts": {
|
|
|
|
|
"android": "react-native run-android",
|
|
|
|
|
"ios": "react-native run-ios",
|
|
|
|
|
"start": "react-native start",
|
|
|
|
|
"test": "jest",
|
2020-06-20 22:49:51 +02:00
|
|
|
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
|
|
|
|
|
"build:ios": "react-native bundle --entry-file='index.ts' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios'"
|
2020-06-16 17:51:51 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2020-06-17 14:58:04 +02:00
|
|
|
"@react-native-community/async-storage": "^1.11.0",
|
2020-06-16 17:51:51 +02:00
|
|
|
"@react-native-community/masked-view": "^0.1.10",
|
2020-07-06 17:43:49 +02:00
|
|
|
"@react-native-community/picker": "^1.6.5",
|
2020-07-26 12:29:27 +02:00
|
|
|
"@react-native-community/slider": "^3.0.3",
|
|
|
|
|
"@react-navigation/bottom-tabs": "^5.7.2",
|
|
|
|
|
"@react-navigation/native": "^5.7.1",
|
|
|
|
|
"@react-navigation/stack": "^5.7.1",
|
2020-07-06 17:43:49 +02:00
|
|
|
"@reduxjs/toolkit": "^1.4.0",
|
2020-07-26 12:29:27 +02:00
|
|
|
"@types/lodash": "^4.14.158",
|
2020-06-17 14:58:04 +02:00
|
|
|
"@types/redux-logger": "^3.0.8",
|
2020-07-26 12:29:27 +02:00
|
|
|
"@types/styled-components": "^5.1.1",
|
|
|
|
|
"date-fns": "^2.15.0",
|
2020-07-05 23:15:30 +02:00
|
|
|
"fuse.js": "^6.4.0",
|
2020-07-26 12:29:27 +02:00
|
|
|
"lodash": "^4.17.19",
|
|
|
|
|
"react": "^16.13.1",
|
|
|
|
|
"react-native": "^0.63.2",
|
2020-07-26 14:45:32 +02:00
|
|
|
"react-native-appearance": "^0.3.4",
|
2020-07-26 12:29:27 +02:00
|
|
|
"react-native-fast-image": "^8.3.2",
|
|
|
|
|
"react-native-gesture-handler": "^1.7.0",
|
|
|
|
|
"react-native-reanimated": "^1.10.1",
|
|
|
|
|
"react-native-safe-area-context": "^3.1.1",
|
2020-07-06 17:43:49 +02:00
|
|
|
"react-native-screens": "^2.9.0",
|
2020-06-16 17:51:51 +02:00
|
|
|
"react-native-svg": "^12.1.0",
|
2020-07-07 13:21:03 +02:00
|
|
|
"react-native-svg-transformer": "^0.14.3",
|
2020-06-23 13:30:11 +02:00
|
|
|
"react-native-track-player": "github:leinelissen/react-native-track-player",
|
2020-07-06 17:43:49 +02:00
|
|
|
"react-native-webview": "^10.3.2",
|
2020-07-26 12:29:27 +02:00
|
|
|
"react-redux": "^7.2.1",
|
2020-06-17 14:58:04 +02:00
|
|
|
"redux": "^4.0.5",
|
|
|
|
|
"redux-logger": "^3.0.6",
|
|
|
|
|
"redux-persist": "^6.0.0",
|
2020-06-16 17:51:51 +02:00
|
|
|
"styled-components": "^5.1.1"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2020-07-26 12:29:27 +02:00
|
|
|
"@babel/core": "^7.10.5",
|
|
|
|
|
"@babel/runtime": "^7.10.5",
|
|
|
|
|
"@react-native-community/eslint-config": "^2.0.0",
|
|
|
|
|
"@types/jest": "^26.0.7",
|
|
|
|
|
"@types/react-native": "^0.63.2",
|
2020-06-17 14:58:04 +02:00
|
|
|
"@types/react-redux": "^7.1.9",
|
2020-06-16 17:51:51 +02:00
|
|
|
"@types/react-test-renderer": "16.9.2",
|
2020-07-26 12:29:27 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^3.7.0",
|
|
|
|
|
"@typescript-eslint/parser": "^3.7.0",
|
|
|
|
|
"babel-jest": "^26.1.0",
|
2020-06-21 10:52:54 +02:00
|
|
|
"babel-plugin-module-resolver": "^4.0.0",
|
2020-07-26 12:29:27 +02:00
|
|
|
"eslint": "^7.5.0",
|
|
|
|
|
"eslint-plugin-react-hooks": "^4.0.8",
|
|
|
|
|
"jest": "^26.1.0",
|
|
|
|
|
"metro-react-native-babel-preset": "^0.61.0",
|
|
|
|
|
"react-test-renderer": "^16.13.1",
|
|
|
|
|
"typescript": "^3.9.7"
|
2020-06-16 17:51:51 +02:00
|
|
|
},
|
|
|
|
|
"jest": {
|
|
|
|
|
"preset": "react-native",
|
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
|
"ts",
|
|
|
|
|
"tsx",
|
|
|
|
|
"js",
|
|
|
|
|
"jsx",
|
|
|
|
|
"json",
|
|
|
|
|
"node"
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|