-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "pdf-shuttle",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"deploy": "next build && wrangler deploy",
"preview": "next build && wrangler dev"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"ag-psd": "^29.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cropperjs": "^1.6.2",
"highlight.js": "^11.11.1",
"html2canvas": "^1.4.1",
"html2pdf.js": "^0.14.0",
"jspdf": "^4.0.0",
"jszip": "^3.10.1",
"lucide-react": "^0.454.0",
"marked": "^17.0.1",
"next": "^15.1.8",
"next-intl": "^4.1.0",
"node-forge": "^1.3.3",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "4.8.69",
"pdfjs-dist-legacy": "npm:pdfjs-dist@^2.16.105",
"react": "^19.0.0",
"react-cropper": "^2.3.3",
"react-dom": "^19.0.0",
"reactflow": "^11.11.4",
"sonner": "^1.5.0",
"tailwind-merge": "^2.5.4",
"tesseract.js": "^6.0.1",
"zgapdfsigner": "^2.7.5",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.8.0",
"@types/node-forge": "^1.3.14",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^9.17.0",
"eslint-config-next": "^15.1.8",
"fake-indexeddb": "^6.2.5",
"fast-check": "^3.22.0",
"jsdom": "^25.0.1",
"postcss": "^8.5.15",
"tailwindcss": "^4.0.0",
"typescript": "^5.6.3",
"vitest": "^3.2.6",
"wrangler": "^4.0.0"
},
"overrides": {
"postcss": "^8.5.15",
"esbuild": "^0.28.1"
}
}