-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.37 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.37 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
{
"name": "invoicing-app",
"private": true,
"version": "0.0.2",
"description": "Personal invoicing desktop app",
"author": "Rick",
"type": "module",
"main": "dist/electron/main.js",
"scripts": {
"dev": "vite",
"dev:electron": "electron .",
"build": "tsc -b && vite build",
"build:electron": "npx tsc -b tsconfig.node.json && npx tsc -b tsconfig.preload.json && vite build --outDir dist/electron/app && mkdir -p dist/electron/database/migrations dist/electron/templates && cp -R electron/database/migrations/*.sql dist/electron/database/migrations/ && cp -R src/templates/* dist/electron/templates/ && electron-builder",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"start:electron": "electron ./dist/electron/main.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@headlessui/react": "^2.2.9",
"@mui/icons-material": "^7.3.10",
"@mui/material": "^7.3.10",
"@mui/x-data-grid": "^8.28.2",
"better-sqlite3": "^12.6.2",
"clsx": "^2.1.1",
"lucide-react": "^1.12.0",
"mustache": "^4.2.0",
"nodemailer": "^8.0.0",
"puppeteer": "^24.36.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-hot-toast": "^2.6.0",
"react-router-dom": "^7.13.0",
"recharts": "^3.7.0",
"tailwind-merge": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@resvg/resvg-js": "^2.6.2",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/mustache": "^4.2.6",
"@types/node": "^24.10.10",
"@types/nodemailer": "^7.0.9",
"@types/react": "^19.2.5",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^3.2.4",
"autoprefixer": "^10.4.24",
"electron": "^40.1.0",
"electron-builder": "^26.7.0",
"eslint": "^10.2.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^17.5.0",
"jsdom": "^29.1.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"tailwindcss": "^4.1.18",
"typescript": "^6.0.3",
"typescript-eslint": "^8.46.4",
"vite": "^7.2.4",
"vitest": "^3.2.4"
}
}