-
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) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 2.01 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": "docx-automation-tool",
"version": "1.0.0",
"description": "Banking document automation tool for generating Word files",
"main": "electron/main.cjs",
"type": "module",
"scripts": {
"start": "concurrently --kill-others \"npm run dev\" \"npm run start:electron\"",
"start:electron": "wait-on -t 30000 -i 1000 --httpTimeout 20000 http://localhost:5000 && npx electron .",
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"electron": "npx electron .",
"electron:dev": "concurrently --kill-others \"npm run dev\" \"npm run start:electron\"",
"pack": "electron-builder --dir",
"dist": "npm run build && electron-builder"
},
"dependencies": {
"@tailwindcss/postcss": "^4.1.17",
"archiver": "^7.0.1",
"clsx": "^2.1.0",
"config-file-ts": "^0.2.4",
"date-fns": "^3.6.0",
"docx": "^8.5.0",
"docxtemplater": "^3.67.4",
"extract-zip": "^2.0.1",
"file-saver": "^2.0.5",
"glob": "^12.0.0",
"jszip": "^3.10.1",
"lucide-react": "^0.344.0",
"mammoth": "^1.11.0",
"moment": "^2.30.1",
"numeral": "^2.0.6",
"pizzip": "^3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sucrase": "^3.34.0",
"tailwind-merge": "^2.2.1",
"vite-plugin-node-polyfills": "^0.24.0",
"word-extractor": "^1.0.4"
},
"devDependencies": {
"@types/node": "^20.11.19",
"@types/react": "^18.3.1",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.22",
"concurrently": "^8.2.2",
"electron": "^39.2.1",
"electron-builder": "^24.13.3",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.17",
"vite": "^6.4.1",
"wait-on": "^7.2.0"
},
"build": {
"appId": "com.banking.docx-automation",
"productName": "DocX Automation Tool",
"files": [
"dist/**/*",
"electron/**/*.cjs"
],
"directories": {
"buildResources": "assets"
},
"win": {
"target": "portable"
}
},
"overrides": {
"glob": "^12.0.0"
}
}