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" : {
2023-06-04 15:03:59 +00:00
"@mantine/core" : "^6.0.0" ,
"@mantine/dropzone" : "^6.0.0" ,
"@mantine/form" : "^6.0.0" ,
"@mantine/hooks" : "^6.0.0" ,
"@mantine/modals" : "^6.0.0" ,
"@mantine/notifications" : "^6.0.0" ,
2023-06-05 01:32:30 +00:00
"axios" : "^0.27.2" ,
2023-06-04 15:03:59 +00:00
"react" : "^18.2.0" ,
"react-dom" : "^18.2.0" ,
2022-10-30 02:11:18 +00:00
"react-query" : "^3.39.2" ,
2023-06-04 15:03:59 +00:00
"react-router-dom" : "~6.10.0" ,
2022-10-30 02:11:18 +00:00
"socket.io-client" : "^4.5.3"
2021-03-25 14:22:43 +00:00
} ,
"devDependencies" : {
2022-10-30 02:11:18 +00:00
"@fontsource/roboto" : "^4.5.0" ,
"@fortawesome/fontawesome-svg-core" : "^6.2.0" ,
"@fortawesome/free-brands-svg-icons" : "^6.2.0" ,
"@fortawesome/free-regular-svg-icons" : "^6.2.0" ,
"@fortawesome/free-solid-svg-icons" : "^6.2.0" ,
"@fortawesome/react-fontawesome" : "^0.2.0" ,
"@testing-library/jest-dom" : "^5.16.5" ,
2023-06-04 15:03:59 +00:00
"@testing-library/react" : "^14.0.0" ,
2022-10-30 02:11:18 +00:00
"@testing-library/user-event" : "^14.4.3" ,
"@types/lodash" : "^4.14.0" ,
2023-06-04 15:03:59 +00:00
"@types/node" : "^18.16.0" ,
"@types/react" : "^18.2.0" ,
"@types/react-dom" : "^18.2.0" ,
2022-10-30 02:11:18 +00:00
"@types/react-table" : "^7.7.0" ,
2023-06-04 15:03:59 +00:00
"@vitejs/plugin-react" : "^4.0.0" ,
"vitest" : "^0.30.1" ,
"@vitest/coverage-c8" : "^0.30.0" ,
"@vitest/ui" : "^0.30.0" ,
2022-10-30 02:11:18 +00:00
"clsx" : "^1.2.0" ,
2023-06-04 15:03:59 +00:00
"eslint" : "^8.39.0" ,
2022-10-30 02:11:18 +00:00
"eslint-config-react-app" : "^7.0.1" ,
"eslint-plugin-react-hooks" : "^4.6.0" ,
2023-02-10 15:10:13 +00:00
"eslint-plugin-testing-library" : "^5.9.0" ,
2022-12-17 05:43:51 +00:00
"husky" : "^8.0.2" ,
2023-06-04 15:03:59 +00:00
"jsdom" : "^21.0.0" ,
2022-10-30 02:11:18 +00:00
"lodash" : "^4.17.0" ,
2022-06-27 03:36:33 +00:00
"moment" : "^2.29" ,
2023-06-04 15:03:59 +00:00
"prettier" : "^2.8.0" ,
2022-10-30 02:11:18 +00:00
"prettier-plugin-organize-imports" : "^3.1.0" ,
"pretty-quick" : "^3.1.0" ,
"react-table" : "^7.8.0" ,
2023-06-04 15:03:59 +00:00
"recharts" : "~2.5.0" ,
"sass" : "^1.62.0" ,
"typescript" : "^5" ,
"vite" : "^4.3.0" ,
"vite-plugin-checker" : "^0.5.5"
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"
]
}
}