Files
ackify-ce/webapp/package.json
Benjamin fb9dab2f0f feat: add document storage and integrated PDF viewer
Storage:
- Add S3 and local storage providers for document uploads
- Support file upload with checksum calculation
- Fix S3 upload for non-TLS connections (MinIO)

Document viewer:
- Add PDF.js-based viewer with scroll tracking
- Implement checksum verification on document load
- Add reader options (read mode, download, require full read)
- Auto-detect read completion for signed documents

API:
- Add document upload endpoint with storage integration
- Add proxy endpoint for stored documents
- Extend document metadata with storage and reader fields
2026-01-08 20:39:34 +01:00

67 lines
1.8 KiB
JSON

{
"name": "webapp",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vue-tsc -b && vite build",
"preview": "vite preview",
"lint:i18n": "node scripts/check-i18n.js",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"cypress:headless": "cypress run --headless",
"test:e2e": "cypress run --headless",
"test:e2e:open": "cypress open"
},
"dependencies": {
"@types/dompurify": "^3.0.5",
"axios": "^1.12.2",
"dompurify": "^3.3.1",
"lucide-vue-next": "^0.546.0",
"marked": "^17.0.1",
"pdfjs-dist": "^4.9.155",
"pinia": "^3.0.3",
"radix-vue": "^1.9.17",
"vue": "^3.5.22",
"vue-i18n": "^11.1.12",
"vue-router": "^4.6.2"
},
"devDependencies": {
"@cypress/code-coverage": "^3.10.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.6.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^4.0.13",
"@vitest/ui": "^4.0.13",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"autoprefixer": "^10.4.21",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cypress": "^15.5.0",
"happy-dom": "^20.0.10",
"istanbul-lib-coverage": "^3.2.2",
"jsdom": "^27.2.0",
"nyc": "^17.1.0",
"patch-package": "^8.0.1",
"postcss": "^8.5.6",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.14",
"tailwindcss-animate": "^1.0.7",
"typescript": "~5.9.3",
"vite": "^7.1.7",
"vite-plugin-istanbul": "^7.2.1",
"vitest": "^4.0.13",
"vue-tsc": "^3.1.0"
},
"overrides": {
"inflight": "npm:noop-package@1.0.0"
}
}