mirror of
https://github.com/idanoo/GoScrobble.git
synced 2024-11-22 08:25:14 +00:00
Daniel Mason
5fd9d41069
- Jellyfin scrobble working - Returns scrobbles via API for authed users /api/v1/user/{uuid}/scrobble - Add redis handler + funcs - Move middleware to pass in uuid as needed
60 lines
1.4 KiB
JSON
60 lines
1.4 KiB
JSON
{
|
|
"name": "goscrobble",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"dependencies": {
|
|
"@reduxjs/toolkit": "^1.5.0",
|
|
"@testing-library/jest-dom": "^5.11.9",
|
|
"@testing-library/react": "^11.2.5",
|
|
"@testing-library/user-event": "^12.8.3",
|
|
"axios": "^0.21.1",
|
|
"bootstrap": "^4.6.0",
|
|
"formik": "^2.2.6",
|
|
"jwt-decode": "^3.1.2",
|
|
"react": "^17.0.2",
|
|
"react-bootstrap": "^1.5.2",
|
|
"react-cookie": "^4.0.3",
|
|
"react-dom": "^17.0.2",
|
|
"react-redux": "^7.2.3",
|
|
"react-router-dom": "^5.2.0",
|
|
"react-scripts": "4.0.3",
|
|
"react-spinners": "^0.10.6",
|
|
"react-toast": "^1.0.1",
|
|
"react-toast-notifications": "^2.4.3",
|
|
"react-toastify": "^7.0.3",
|
|
"reactstrap": "^8.9.0",
|
|
"redux": "^4.0.5",
|
|
"redux-persist": "^6.0.0",
|
|
"redux-thunk": "^2.3.0",
|
|
"web-vitals": "^1.1.1"
|
|
},
|
|
"scripts": {
|
|
"start": "react-scripts start",
|
|
"build": "react-scripts build",
|
|
"test": "react-scripts test",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest"
|
|
]
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"redux-devtools-extension": "^2.13.9",
|
|
"webpack-dev-server": "^3.11.1"
|
|
}
|
|
}
|