-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
108 lines (108 loc) · 2.7 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
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
{
"name": "huc",
"version": "2.1.0",
"private": true,
"main": "main.js",
"author": "Woisol",
"description": "Healthily Use Computer",
"homepage": ".",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "jest",
"eject": "react-scripts eject",
"estart": "electron .",
"tstart": "npx tailwindcss -i ./src/input.css -o ./src/MainView.css --watch",
"astart": "react-scripts start & npx tailwindcss -i ./src/input.css -o ./src/MainView.css --watch & electron .",
"ebuild": "electron-builder"
},
"build": {
"productName": "HUC",
"appId": "com.woisol.huc",
"copyright": "Copyright © 2024 ${author}",
"directories": {
"output": "out"
},
"win": {
"icon": "./public/Logo.ico",
"artifactName": "${productName} ${version}.${ext}"
},
"files": [
"build/**/*",
"public/**/*",
"./*"
],
"extraFiles": [
"Monitor/*",
"AppInfo.json",
"config.json",
"AppsOrder.json",
"Asset/**/*",
"README.md",
"README-en.md"
],
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./public/Logo.ico",
"uninstallerIcon": "./public/Logo.ico",
"installerHeaderIcon": "./public/Logo.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": false,
"shortcutName": "HUC"
},
"extends": null
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@headlessui/react": "^1.7.18",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"child_process": "^1.0.2",
"echarts": "^5.5.0",
"echarts-for-react": "^3.0.2",
"fs": "^0.0.1-security",
"iconv-lite": "^0.6.3",
"jquery": "^3.7.1",
"line-reader": "^0.4.0",
"mysql": "^2.18.1",
"path": "^0.12.7",
"react": "^18.2.0",
"react-beautiful-dnd": "^13.1.1",
"react-dom": "^18.2.0",
"react-scripts": "5.0.1",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"web-vitals": "^2.1.4"
},
"devDependencies": {
"@types/jquery": "^3.5.29",
"@types/less": "^3.0.6",
"@types/line-reader": "^0.0.37",
"@types/mysql": "^2.15.26",
"@types/react-beautiful-dnd": "^13.1.8",
"electron": "^29.1.4",
"electron-builder": "^24.13.3",
"jest": "^29.7.0",
"less": "^4.2.0"
}
}