-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.99 KB
/
package.json
File metadata and controls
118 lines (118 loc) · 3.99 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "secretary",
"version": "1.8.0",
"private": true,
"description": "An application to help the secretary",
"author": {
"name": "Nathanael Björkgård",
"email": "nathanael@bjorkgard.se"
},
"homepage": "https://secretary.jwapp.info",
"repository": {
"type": "git",
"url": "https://github.com/bjorkgard/secretary-application.git"
},
"main": "./out/main/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"build": "electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run typecheck && npm run build && electron-builder --win",
"build:mac": "npm run typecheck && npm run build && electron-builder --mac",
"build:linux": "npm run typecheck && npm run build && electron-builder --linux",
"build:all": "npm run typecheck && npm run build && electron-builder --win --mac --linux",
"release": "electron-builder --publish always",
"commit": "cz",
"validate": "npm run lint && npm run typecheck",
"lint-staged": "lint-staged",
"prepare": "husky",
"make:release": "node ./scripts/modules/release/index.mjs"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/utils": "^3.0.0",
"@headlessui/react": "^2.2.9",
"@heroicons/react": "^2.2.0",
"@hookstate/core": "^4.0.2",
"@pdf-lib/fontkit": "^1.1.1",
"@szhsin/react-accordion": "^1.4.1",
"ajv": "^8.18.0",
"ajv-formats": "^2.1.1",
"chart.js": "^4.5.1",
"clsx": "^2.1.1",
"docx": "^9.6.0",
"electron-prompt": "^1.7.0",
"electron-updater": "^6.8.3",
"electron-window-state": "^5.0.3",
"exceljs": "^4.4.0",
"fs-extra": "^11.3.4",
"i18next": "^24.2.3",
"i18next-fs-backend": "^2.6.1",
"jspdf": "^4.2.1",
"jspdf-autotable": "^5.0.7",
"jszip": "^3.10.1",
"motion": "^12.38.0",
"nedb-promises": "^6.2.3",
"node-schedule": "^2.1.1",
"open": "^10.2.0",
"pdf-lib": "^1.17.1",
"react-chartjs-2": "^5.3.1",
"react-hook-form": "^7.72.0",
"react-i18next": "^15.7.3",
"react-markdown": "^9.0.3",
"react-phone-number-input": "^3.4.16",
"react-router-dom": "^6.30.3",
"react-tailwindcss-select": "^1.8.5",
"tailwind-scrollbar-hide": "^2.0.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.2",
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron/notarize": "^2.5.0",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/typography": "^0.5.19",
"@types/node": "^22.15.30",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/use-persisted-state-hook": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.27",
"cz-conventional-changelog": "^3.3.0",
"electron": "^39.8.6",
"electron-builder": "^26.8.1",
"electron-devtools-installer": "^4.0.0",
"electron-log": "^5.4.3",
"electron-vite": "^3.1.0",
"eslint": "^8.57.1",
"eslint-plugin-align-assignments": "^1.1.2",
"eslint-plugin-align-import": "^1.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"postcss": "^8.5.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.17",
"tailwindcss-debug-screens": "^2.2.1",
"typescript": "^5.9.3",
"vite": "^6.4.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}