-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.61 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.61 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
74
75
76
77
78
79
80
81
82
{
"name": "print",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"setup-admin": "node scripts/setup-admin.js",
"setup-pickup-locations": "node scripts/setup-pickup-locations.js",
"setup-pricing": "node scripts/setup-pricing.js",
"setup-sample-templates": "node scripts/setup-sample-templates.js",
"setup-cloudmersive": "node scripts/setup-cloudmersive.js",
"test-adobe": "node scripts/test-adobe-integration.js",
"test-https": "node scripts/test-https-api.js",
"test-generate-document": "node scripts/test-generate-document.js",
"test-cloudmersive": "node scripts/test-cloudmersive-integration.js",
"test-cloudmersive-simple": "node scripts/test-cloudmersive-simple.js",
"test-libreoffice": "node scripts/test-libreoffice.js",
"test-api-endpoint": "node scripts/test-api-endpoint.js",
"test-integration": "node scripts/test-integration-complete.js",
"fix-filetypes": "ts-node scripts/fix-filetype-in-orders.ts"
},
"dependencies": {
"@thasmorato/docx-parser": "^1.4.0",
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/react-pdf": "^6.2.0",
"@types/uuid": "^10.0.0",
"@upstash/ratelimit": "^2.0.8",
"@upstash/redis": "^1.36.4",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"docx": "^9.5.1",
"docx-preview": "^0.3.6",
"docx-templates": "^4.14.1",
"docx4js": "^3.3.0",
"docxtemplater": "^3.66.2",
"dotenv": "^17.2.1",
"file-saver": "^2.0.5",
"form-data": "^4.0.0",
"jsonwebtoken": "^9.0.2",
"jspdf": "^3.0.2",
"mammoth": "^1.10.0",
"mongodb": "^6.19.0",
"mongoose": "^8.18.0",
"next": "15.5.7",
"next-auth": "^4.24.11",
"node-fetch": "^2.7.0",
"nodemailer": "^6.10.1",
"oci-sdk": "^2.95.0",
"pdf-lib": "^1.17.1",
"pdf-parse": "^1.1.1",
"pdf-poppler": "^0.2.1",
"pdf2pic": "^3.2.0",
"pdfjs-dist": "^5.4.149",
"pizzip": "^3.2.0",
"razorpay": "^2.9.6",
"react": "19.0.1",
"react-dom": "19.0.1",
"react-hot-toast": "^2.6.0",
"react-pdf": "^10.1.0",
"tesseract.js": "^6.0.1",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/mongodb": "^4.0.6",
"@types/node": "^20.19.13",
"@types/nodemailer": "^6.4.19",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "15.5.7",
"raw-loader": "^4.0.2",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2"
}
}