Files
jellyfin-audio-player/package.json
T

88 lines
3.1 KiB
JSON
Raw Normal View History

2020-06-16 17:51:51 +02:00
{
2022-06-09 22:32:05 +02:00
"name": "fintunes",
2026-01-25 19:05:29 +01:00
"version": "2.5.0",
2026-02-07 22:26:47 +01:00
"main": "index.js",
2020-06-16 17:51:51 +02:00
"private": true,
"scripts": {
"android": "react-native run-android",
2022-06-09 22:32:05 +02:00
"ios": "react-native run-ios --scheme \"Fintunes\"",
2020-06-16 17:51:51 +02:00
"start": "react-native start",
2026-01-29 14:19:24 +01:00
"test": "jest",
2023-04-23 01:15:07 +02:00
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx && tsc --noEmit",
2025-08-06 10:19:20 -04:00
"build:ios": "react-native bundle --entry-file='index.js' --bundle-output='./ios/main.jsbundle' --dev=false --platform='ios'"
2020-06-16 17:51:51 +02:00
},
"dependencies": {
2026-01-20 09:17:20 +01:00
"@d11/react-native-fast-image": "8.13.0",
2026-02-07 22:26:47 +01:00
"@iternio/react-native-auto-play": "0.2.2",
2026-01-25 19:04:55 +01:00
"@react-native-async-storage/async-storage": "^2.2.0",
"@react-native-community/datetimepicker": "^8.6.0",
"@react-native-community/netinfo": "^11.4.1",
"@react-navigation/bottom-tabs": "7.10.1",
"@react-navigation/elements": "2.9.5",
"@react-navigation/native": "^7.1.28",
"@react-navigation/native-stack": "7.10.1",
"@react-navigation/stack": "^7.6.16",
2026-01-20 09:17:20 +01:00
"@reduxjs/toolkit": "2.11.2",
2026-01-29 14:19:24 +01:00
"@sbaiahmed1/react-native-blur": "^4.5.3",
2026-01-25 19:04:55 +01:00
"@shopify/flash-list": "2.2.0",
"@shopify/react-native-skia": "2.4.14",
"date-fns": "4.1.0",
2026-01-20 09:17:20 +01:00
"events": "3.3.0",
"fuse.js": "7.1.0",
"i18n-js": "4.5.1",
2026-01-25 19:04:55 +01:00
"lodash": "4.17.23",
2026-01-20 09:17:20 +01:00
"mime": "4.1.0",
2026-01-25 19:04:55 +01:00
"react": "19.2.3",
2026-01-20 09:17:20 +01:00
"react-airplay": "1.2.0",
2026-01-25 19:04:55 +01:00
"react-native": "^0.83.1",
2026-01-20 09:17:20 +01:00
"react-native-accessibility-settings": "0.1.2",
"react-native-collapsible": "1.6.2",
"react-native-dotenv": "3.4.11",
2026-01-25 19:04:55 +01:00
"react-native-fs": "^2.20.0",
"react-native-gesture-handler": "^2.30.0",
"react-native-localize": "3.6.1",
"react-native-modal-datetime-picker": "18.0.0",
2026-02-07 22:26:47 +01:00
"react-native-nitro-modules": "^0.33.2",
2026-01-25 19:04:55 +01:00
"react-native-reanimated": "^4.2.1",
"react-native-safe-area-context": "^5.6.2",
"react-native-screens": "^4.20.0",
2026-01-20 09:17:20 +01:00
"react-native-shadow-2": "7.1.2",
2026-01-25 19:04:55 +01:00
"react-native-svg": "^15.15.1",
"react-native-track-player": "4.1.2",
"react-native-webview": "^13.16.0",
"react-native-worklets": "^0.7.2",
2026-01-20 09:17:20 +01:00
"react-redux": "9.2.0",
"redux": "5.0.1",
"redux-persist": "6.0.0",
"styled-components": "6.3.8"
2020-06-16 17:51:51 +02:00
},
"devDependencies": {
2026-01-20 09:17:20 +01:00
"@babel/core": "7.28.6",
2026-01-29 14:19:24 +01:00
"@babel/preset-env": "^7.28.6",
2026-01-20 09:17:20 +01:00
"@babel/runtime": "7.28.6",
2026-01-29 14:19:24 +01:00
"@react-native-community/cli": "^20.1.1",
2026-01-25 19:04:55 +01:00
"@react-native/babel-preset": "^0.83.1",
"@react-native/eslint-config": "^0.83.1",
"@react-native/metro-config": "^0.83.1",
"@react-native/typescript-config": "0.83.1",
"@sentry/cli": "3.1.0",
"@sentry/react-native": "7.10.0",
"@types/events": "^3.0.3",
2026-01-29 14:19:24 +01:00
"@types/jest": "^30.0.0",
2026-01-25 19:04:55 +01:00
"@types/lodash": "4.17.23",
2026-01-29 14:19:24 +01:00
"@types/node": "^25.1.0",
2026-01-25 19:04:55 +01:00
"@types/react": "19.2.9",
"@typescript-eslint/eslint-plugin": "8.53.1",
"@typescript-eslint/parser": "8.53.1",
2026-01-20 09:17:20 +01:00
"babel-plugin-module-resolver": "5.0.2",
"eslint": "8.57.1",
"eslint-plugin-react": "7.37.5",
2026-01-25 19:04:55 +01:00
"eslint-plugin-react-hooks": "7.0.1",
2026-01-29 14:19:24 +01:00
"jest": "^29.7.0",
2026-01-20 09:17:20 +01:00
"metro-react-native-babel-transformer": "0.77.0",
"react-native-svg-transformer": "1.5.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
2020-06-16 17:51:51 +02:00
}
}