* Started building out idea around detail drawer. Need code from word count to continue * Fixed the logic for caluclating time to read on comics * Adding styles * more styling fixes * Cleaned up the styles a bit more so it's at least functional. Not sure on the feature, might abandon. * Pulled Robbie's changes in and partially migrated them to the drawer. * Add offset overrides for offcanvas so it takes our header into account * Implemented a basic time left to finish the series (or at least what's in Kavita). Rough around the edges. * Cleaned up the drawer code. * Added Quick Catch ups to recommended page. Updated the timeout for scan tasks to ensure we don't run 2 at the same time. * Quick catchups implemented * Added preliminary support for Korean filename parsing. Reduced an array alloc that is called many thousands of times per scan. * Fixing drawer overflow * Fixed a calculation bug with average reading time. * Small spacing changes to drawer * Don't show estimated reading time if the user hasn't read anything * Bump eventsource from 1.1.1 to 2.0.2 in /UI/Web Bumps [eventsource](https://github.com/EventSource/eventsource) from 1.1.1 to 2.0.2. - [Release notes](https://github.com/EventSource/eventsource/releases) - [Changelog](https://github.com/EventSource/eventsource/blob/master/HISTORY.md) - [Commits](https://github.com/EventSource/eventsource/compare/v1.1.1...v2.0.2) --- updated-dependencies: - dependency-name: eventsource dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Added image to series detail drawer Co-authored-by: Robbie Davis <robbie@therobbiedavis.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
83 lines
2.3 KiB
JSON
83 lines
2.3 KiB
JSON
{
|
|
"name": "kavita-webui",
|
|
"version": "0.4.2",
|
|
"scripts": {
|
|
"ng": "ng",
|
|
"start": "ng serve",
|
|
"build": "ng build",
|
|
"prod": "ng build --configuration production",
|
|
"explore": "ng build --stats-json && webpack-bundle-analyzer dist/stats.json",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"lint": "ng lint",
|
|
"e2e": "ng e2e"
|
|
},
|
|
"private": true,
|
|
"dependencies": {
|
|
"@angular-slider/ngx-slider": "^2.0.3",
|
|
"@angular/animations": "~13.2.2",
|
|
"@angular/cdk": "^13.2.2",
|
|
"@angular/common": "~13.2.2",
|
|
"@angular/compiler": "~13.2.2",
|
|
"@angular/core": "~13.2.2",
|
|
"@angular/forms": "~13.2.2",
|
|
"@angular/localize": "~13.2.2",
|
|
"@angular/platform-browser": "~13.2.2",
|
|
"@angular/platform-browser-dynamic": "~13.2.2",
|
|
"@angular/router": "~13.2.2",
|
|
"@fortawesome/fontawesome-free": "^6.0.0",
|
|
"@microsoft/signalr": "^6.0.2",
|
|
"@ng-bootstrap/ng-bootstrap": "^12.1.2",
|
|
"@popperjs/core": "^2.11.2",
|
|
"@types/file-saver": "^2.0.5",
|
|
"bootstrap": "^5.1.2",
|
|
"bowser": "^2.11.0",
|
|
"eventsource": "^2.0.2",
|
|
"file-saver": "^2.0.5",
|
|
"lazysizes": "^5.3.2",
|
|
"ng-circle-progress": "^1.6.0",
|
|
"ngx-color-picker": "^12.0.0",
|
|
"ngx-file-drop": "^13.0.0",
|
|
"ngx-toastr": "^14.2.1",
|
|
"requires": "^1.0.2",
|
|
"rxjs": "~7.5.4",
|
|
"swiper": "^8.0.6",
|
|
"tslib": "^2.3.1",
|
|
"webpack-bundle-analyzer": "^4.5.0",
|
|
"zone.js": "~0.11.4"
|
|
},
|
|
"devDependencies": {
|
|
"@angular-devkit/build-angular": "~13.2.3",
|
|
"@angular/cli": "^13.2.3",
|
|
"@angular/compiler-cli": "~13.2.2",
|
|
"@playwright/test": "^1.20.2",
|
|
"@types/jest": "^27.4.0",
|
|
"@types/node": "^17.0.17",
|
|
"codelyzer": "^6.0.2",
|
|
"jest": "^27.5.1",
|
|
"jest-preset-angular": "^11.1.0",
|
|
"karma-coverage": "~2.2.0",
|
|
"playwright": "^1.20.2",
|
|
"protractor": "~7.0.0",
|
|
"ts-node": "~10.5.0",
|
|
"tslint": "^6.1.3",
|
|
"typescript": "~4.5.5"
|
|
},
|
|
"jest": {
|
|
"preset": "jest-preset-angular",
|
|
"setupFilesAfterEnv": [
|
|
"<rootDir>/setupJest.ts"
|
|
],
|
|
"testPathIgnorePatterns": [
|
|
"<rootDir>/node_modules/",
|
|
"<rootDir>/dist/"
|
|
],
|
|
"globals": {
|
|
"ts-jest": {
|
|
"tsConfig": "<rootDir>/tsconfig.spec.json",
|
|
"stringifyContentPathRegex": "\\.html$"
|
|
}
|
|
}
|
|
}
|
|
}
|