mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
696434b36d
* Write a low resolution low fps stream from decoded frames (#8673) * Generate low res low fps previews for recordings viewer * Make sure previews end on the hour * Fix durations and decrase keyframe interval to ensure smooth scrubbing * Ensure minimized resolution is compatible with yuv * Add ability to configure preview quality * Fix * Clean up previews more efficiently * Use iterator * Ensure final frame in preview is not duplicated * initial react/ts framework * fix gitignore glob excluding ts files * ignore folders in web-new * SWRConfig changes for swr 2.x * use frigateConfig type in websocket handlers --------- Co-authored-by: Nicolas Mowen <nickmowen213@gmail.com>
87 lines
2.7 KiB
JSON
87 lines
2.7 KiB
JSON
{
|
|
"name": "web-new",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite --host",
|
|
"build": "tsc && vite build --base=/BASE_PATH/",
|
|
"lint": "eslint --ext .jsx,.js,.tsx,.ts --ignore-path .gitignore .",
|
|
"preview": "vite preview",
|
|
"prettier:write": "prettier -u -w --ignore-path .gitignore \"*.{ts,tsx,js,jsx,css,html}\"",
|
|
"test": "vitest",
|
|
"coverage": "vitest run --coverage"
|
|
},
|
|
"dependencies": {
|
|
"@cycjimmy/jsmpeg-player": "^6.0.5",
|
|
"@hookform/resolvers": "^3.3.2",
|
|
"@radix-ui/react-alert-dialog": "^1.0.5",
|
|
"@radix-ui/react-aspect-ratio": "^1.0.3",
|
|
"@radix-ui/react-dialog": "^1.0.5",
|
|
"@radix-ui/react-dropdown-menu": "^2.0.6",
|
|
"@radix-ui/react-label": "^2.0.2",
|
|
"@radix-ui/react-popover": "^1.0.7",
|
|
"@radix-ui/react-radio-group": "^1.1.3",
|
|
"@radix-ui/react-select": "^2.0.0",
|
|
"@radix-ui/react-slider": "^1.1.2",
|
|
"@radix-ui/react-slot": "^1.0.2",
|
|
"@radix-ui/react-switch": "^1.0.3",
|
|
"@radix-ui/react-tabs": "^1.0.4",
|
|
"axios": "^1.6.2",
|
|
"class-variance-authority": "^0.7.0",
|
|
"clsx": "^2.0.0",
|
|
"copy-to-clipboard": "^3.3.3",
|
|
"date-fns": "^2.30.0",
|
|
"idb-keyval": "^6.2.1",
|
|
"immer": "^10.0.3",
|
|
"lucide-react": "^0.294.0",
|
|
"react": "^18.2.0",
|
|
"react-day-picker": "^8.9.1",
|
|
"react-dom": "^18.2.0",
|
|
"react-hook-form": "^7.48.2",
|
|
"react-icons": "^4.12.0",
|
|
"react-router-dom": "^6.20.1",
|
|
"react-use-websocket": "^4.5.0",
|
|
"recoil": "^0.7.7",
|
|
"sort-by": "^1.2.0",
|
|
"strftime": "^0.10.2",
|
|
"swr": "^2.2.4",
|
|
"tailwind-merge": "^2.1.0",
|
|
"tailwindcss-animate": "^1.0.7",
|
|
"video.js": "^8.6.1",
|
|
"videojs-playlist": "^5.1.0",
|
|
"vite-plugin-monaco-editor": "^1.1.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"@testing-library/jest-dom": "^6.1.5",
|
|
"@types/node": "^20.10.3",
|
|
"@types/react": "^18.2.37",
|
|
"@types/react-dom": "^18.2.15",
|
|
"@types/react-icons": "^3.0.0",
|
|
"@typescript-eslint/eslint-plugin": "^6.10.0",
|
|
"@typescript-eslint/parser": "^6.10.0",
|
|
"@vitejs/plugin-react-swc": "^3.5.0",
|
|
"@vitest/coverage-v8": "^1.0.0",
|
|
"autoprefixer": "^10.4.16",
|
|
"eslint": "^8.53.0",
|
|
"eslint-config-prettier": "^9.1.0",
|
|
"eslint-plugin-jest": "^27.6.0",
|
|
"eslint-plugin-prettier": "^5.0.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-react-refresh": "^0.4.4",
|
|
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
"fake-indexeddb": "^5.0.1",
|
|
"jest-websocket-mock": "^2.5.0",
|
|
"jsdom": "^23.0.1",
|
|
"msw": "^2.0.10",
|
|
"postcss": "^8.4.32",
|
|
"prettier": "^3.1.0",
|
|
"tailwindcss": "^3.3.5",
|
|
"typescript": "^5.2.2",
|
|
"vite": "^5.0.0",
|
|
"vitest": "^1.0.0"
|
|
}
|
|
}
|