2021-03-25 14:22:43 +00:00
{
"name" : "bazarr" ,
2021-07-30 11:34:57 +00:00
"version" : "1.0.0" ,
2021-03-25 14:22:43 +00:00
"description" : "Bazarr is a companion application to Sonarr and Radarr. It manages and downloads subtitles based on your requirements. You define your preferences by TV show or movie and Bazarr takes care of everything for you." ,
"repository" : {
"type" : "git" ,
"url" : "git+https://github.com/morpheus65535/bazarr.git"
} ,
"author" : "morpheus65535" ,
2021-05-08 17:13:10 +00:00
"license" : "GPL-3" ,
2021-03-25 14:22:43 +00:00
"bugs" : {
"url" : "https://github.com/morpheus65535/bazarr/issues"
} ,
2021-08-29 17:16:47 +00:00
"private" : true ,
2021-03-25 14:22:43 +00:00
"dependencies" : {
2024-03-04 03:24:08 +00:00
"@mantine/core" : "^6.0.21" ,
2024-03-03 17:15:23 +00:00
"@mantine/dropzone" : "^6.0.21" ,
"@mantine/form" : "^6.0.21" ,
2024-03-04 03:24:08 +00:00
"@mantine/hooks" : "^6.0.21" ,
2024-03-03 17:15:23 +00:00
"@mantine/modals" : "^6.0.21" ,
"@mantine/notifications" : "^6.0.21" ,
2024-04-09 10:29:51 +00:00
"axios" : "^1.6.8" ,
2023-06-04 15:03:59 +00:00
"react" : "^18.2.0" ,
"react-dom" : "^18.2.0" ,
2024-03-03 17:15:23 +00:00
"react-query" : "^3.39.3" ,
2024-03-13 02:48:00 +00:00
"react-router-dom" : "^6.22.3" ,
2024-04-09 10:29:51 +00:00
"socket.io-client" : "^4.7.5"
2021-03-25 14:22:43 +00:00
} ,
"devDependencies" : {
2024-03-13 02:48:00 +00:00
"@fontsource/roboto" : "^5.0.12" ,
2024-04-09 10:29:51 +00:00
"@fortawesome/fontawesome-svg-core" : "^6.5.2" ,
"@fortawesome/free-brands-svg-icons" : "^6.5.2" ,
"@fortawesome/free-regular-svg-icons" : "^6.5.2" ,
"@fortawesome/free-solid-svg-icons" : "^6.5.2" ,
2022-10-30 02:11:18 +00:00
"@fortawesome/react-fontawesome" : "^0.2.0" ,
2024-03-13 02:48:00 +00:00
"@testing-library/jest-dom" : "^6.4.2" ,
2024-04-30 02:13:28 +00:00
"@testing-library/react" : "^15.0.5" ,
2024-03-03 17:15:23 +00:00
"@testing-library/user-event" : "^14.5.2" ,
2024-03-13 02:48:00 +00:00
"@types/jest" : "^29.5.12" ,
"@types/lodash" : "^4.17.0" ,
2024-04-09 10:29:51 +00:00
"@types/node" : "^20.12.6" ,
"@types/react" : "^18.2.75" ,
"@types/react-dom" : "^18.2.24" ,
"@types/react-table" : "^7.7.20" ,
2024-03-03 17:15:23 +00:00
"@vitejs/plugin-react" : "^4.2.1" ,
2024-04-09 10:29:51 +00:00
"@vitest/coverage-v8" : "^1.4.0" ,
2024-03-03 17:15:23 +00:00
"@vitest/ui" : "^1.2.2" ,
"clsx" : "^2.1.0" ,
2024-03-13 02:48:00 +00:00
"eslint" : "^8.57.0" ,
2022-10-30 02:11:18 +00:00
"eslint-config-react-app" : "^7.0.1" ,
"eslint-plugin-react-hooks" : "^4.6.0" ,
2024-03-03 17:15:23 +00:00
"eslint-plugin-testing-library" : "^6.2.0" ,
2024-03-13 02:48:00 +00:00
"husky" : "^9.0.11" ,
2024-03-03 17:15:23 +00:00
"jsdom" : "^24.0.0" ,
"lodash" : "^4.17.21" ,
"moment" : "^2.30.1" ,
2024-03-13 02:48:00 +00:00
"prettier" : "^3.2.5" ,
2024-03-03 17:15:23 +00:00
"prettier-plugin-organize-imports" : "^3.2.4" ,
"pretty-quick" : "^4.0.0" ,
2022-10-30 02:11:18 +00:00
"react-table" : "^7.8.0" ,
2024-04-09 10:29:51 +00:00
"recharts" : "^2.12.4" ,
"sass" : "^1.74.1" ,
"typescript" : "^5.4.4" ,
"vite" : "^5.2.8" ,
2024-03-13 02:48:00 +00:00
"vite-plugin-checker" : "^0.6.4" ,
2024-03-03 17:15:23 +00:00
"vitest" : "^1.2.2" ,
2024-03-13 02:48:00 +00:00
"yaml" : "^2.4.1"
2021-03-25 14:22:43 +00:00
} ,
"scripts" : {
2022-03-16 06:26:15 +00:00
"start" : "vite" ,
"build" : "vite build" ,
"build:ci" : "vite build -m development" ,
"check" : "eslint --ext .ts,.tsx src" ,
"check:ts" : "tsc --noEmit --incremental false" ,
"check:fmt" : "prettier -c ." ,
2022-03-28 17:10:24 +00:00
"test" : "vitest" ,
2023-02-10 15:10:13 +00:00
"test:ui" : "vitest --ui" ,
"coverage" : "vitest run --coverage" ,
2022-03-16 06:26:15 +00:00
"format" : "prettier -w ." ,
2021-08-29 17:16:47 +00:00
"prepare" : "cd .. && husky install frontend/.husky"
2021-03-25 14:22:43 +00:00
} ,
"browserslist" : {
"production" : [
">0.2%" ,
"not dead" ,
"not op_mini all"
] ,
"development" : [
"last 1 chrome version" ,
"last 1 firefox version" ,
"last 1 safari version"
]
}
}