-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.23 KB
/
package.json
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
{
"name": "FlowMaster",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"build:icon": "npm run electron:generate-icons",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"rebuild": "npx electron-rebuild -f -w -t dev better-sqlite3",
"postinstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config",
"build:mac": "npm run build && electron-builder --mac --config",
"build:linux": "npm run build && electron-builder --linux --config",
"electron:generate-icons": "electron-icon-builder --input=./public/logo.png --output=public --flatten"
},
"dependencies": {
"@ant-design/icons": "^5.3.7",
"ahooks": "3.7.11",
"antd": "5.18.0",
"autoprefixer": "10.4.19",
"better-sqlite3": "9.6.0",
"classnames": "2.5.1",
"dayjs": "1.11.10",
"electron-log": "^5.1.5",
"immer": "10.1.1",
"less": "4.2.0",
"lodash-es": "4.17.21",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hotkeys-hook": "^4.5.0",
"react-router-dom": "6.23.1",
"reflect-metadata": "0.2.2",
"typeorm": "0.3.20",
"zustand": "4.5.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.10",
"@types/lodash-es": "4.17.12",
"@types/node": "20.14.5",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@typescript-eslint/eslint-plugin": "7.1.1",
"@typescript-eslint/parser": "7.1.1",
"@vitejs/plugin-react": "4.2.1",
"electron": "30.0.1",
"electron-builder": "24.13.3",
"electron-icon-builder": "2.0.1",
"electron-updater": "6.2.1",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"postcss": "8.4.38",
"postcss-preset-env": "9.5.6",
"tailwindcss": "3.4.3",
"typescript": "5.2.2",
"vite": "5.1.6",
"vite-plugin-electron": "0.28.6",
"vite-plugin-electron-renderer": "0.14.5",
"vite-plugin-imp": "^2.4.0"
},
"config": {
"electron": {
"mirror": "https://registry.npmmirror.com/-/binary/electron/"
}
},
"main": "dist-electron/main.js"
}