Files
jellyfin-audio-player/package.json
2020-11-02 22:42:57 +01:00

81 lines
2.6 KiB
JSON

{
"name": "JellyfinAudioPlayer",
"version": "0.0.1",
"main": "src/index.js",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios --scheme \"Jellyfin Player\"",
"start": "react-native start",
"test": "jest",
"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'"
},
"dependencies": {
"@react-native-community/async-storage": "^1.12.1",
"@react-native-community/masked-view": "^0.1.10",
"@react-native-community/picker": "^1.8.1",
"@react-native-community/slider": "^3.0.3",
"@react-navigation/bottom-tabs": "^5.10.2",
"@react-navigation/native": "^5.8.2",
"@react-navigation/stack": "^5.11.1",
"@reduxjs/toolkit": "^1.4.0",
"@types/lodash": "^4.14.164",
"@types/redux-logger": "^3.0.8",
"@types/styled-components": "^5.1.4",
"date-fns": "^2.16.1",
"fuse.js": "^6.4.3",
"i18n-js": "^3.8.0",
"lodash": "^4.17.20",
"react": "^17.0.1",
"react-native": "^0.63.3",
"react-native-appearance": "^0.3.4",
"react-native-fast-image": "^8.3.3",
"react-native-gesture-handler": "^1.8.0",
"react-native-localize": "^1.4.3",
"react-native-reanimated": "^1.13.1",
"react-native-safe-area-context": "^3.1.8",
"react-native-screens": "^2.12.0",
"react-native-svg": "^12.1.0",
"react-native-svg-transformer": "^0.14.3",
"react-native-track-player": "github:leinelissen/react-native-track-player",
"react-native-webview": "^10.10.0",
"react-redux": "^7.2.2",
"redux": "^4.0.5",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/runtime": "^7.12.1",
"@react-native-community/eslint-config": "^2.0.0",
"@types/i18n-js": "^3.0.3",
"@types/jest": "^26.0.15",
"@types/react-native": "^0.63.31",
"@types/react-redux": "^7.1.9",
"@types/react-test-renderer": "^16.9.3",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-jest": "^26.6.2",
"babel-plugin-module-resolver": "^4.0.0",
"eslint": "^7.12.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.2",
"metro-react-native-babel-preset": "^0.63.0",
"react-test-renderer": "^17.0.1",
"typescript": "^4.0.5"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}