-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.06 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
{
"name": "pdf-tools",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest run",
"test:watch": "vitest",
"deploy": "next build && node scripts/deploy-ftp.mjs"
},
"dependencies": {
"browser-image-compression": "^2.0.2",
"fflate": "^0.8.2",
"file-saver": "^2.0.5",
"jspdf": "^4.2.0",
"next": "^16.2.0",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"react": "19.2.3",
"react-dom": "19.2.3"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@types/file-saver": "^2.0.7",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^4.3.0",
"basic-ftp": "^5.2.0",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"happy-dom": "^20.8.9",
"postcss": "^8.5.8",
"tailwindcss": "^4.2.1",
"typescript": "^5",
"vitest": "^4.1.2"
}
}