-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
116 lines (116 loc) · 3.11 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
109
110
111
112
113
114
115
116
{
"name": "pi-tool",
"version": "0.3.1",
"author": "Cooler Master <[email protected]>",
"description": "Overclocking, monitoring, button remapping tool for the Pi 4",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/chart.js": "^2.9.24",
"@types/jest": "^24.9.1",
"@types/node": "^12.12.53",
"@types/ramda": "^0.27.15",
"@types/react": "^16.9.44",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-dom": "^16.9.8",
"@types/react-redux": "^7.1.9",
"@types/uuid": "^8.3.0",
"chart.js": "^2.9.3",
"chartjs-plugin-streaming": "^1.8.0",
"is-electron": "^2.2.0",
"ramda": "^0.27.1",
"react": "^16.13.1",
"react-beautiful-dnd": "^13.0.0",
"react-chartjs-2": "^2.10.0",
"react-dnd": "^11.1.3",
"react-dnd-html5-backend": "^11.1.3",
"react-dom": "^16.13.1",
"react-redux": "^7.2.1",
"react-scripts": "3.4.1",
"redux": "^4.0.5",
"redux-persist": "^6.0.0",
"redux-thunk": "^2.3.0",
"rxjs": "^6.6.2",
"typescript": "^3.7.5",
"uuid": "^8.3.0"
},
"scripts": {
"build-daemon": "cd daemon && cargo build --release --features raspberry",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"postinstall": "electron-builder install-app-deps",
"preelectron-pack": "yarn build",
"pack": "electron-builder --dir --armv7l",
"dist-armv7l": "USE_SYSTEM_FPM=\"true\" electron-builder --dir --armv7l --linux deb",
"dist-arm64": "USE_SYSTEM_FPM=\"true\" electron-builder --dir --arm64 --linux deb"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"electron": "^9.2.1",
"electron-builder": "^22.8.0"
},
"main": "public/electron.js",
"homepage": "./",
"build": {
"appId": "com.coolermaster.pitool",
"productName": "Cooler Master Pi Tool",
"copyright": "Cooler Master",
"icon": "public/cm_logo_outline.png",
"files": [
"build/**/*",
"node_modules/**/*"
],
"extraFiles": [
"public/cm_logo_outline.png",
{
"from": "daemon/target/release",
"to": "bin",
"filter": [
"pi-tool-daemon"
]
}
],
"linux": {
"icon": "public/cm_logo_outline.png"
},
"deb": {
"icon": "public/cm_logo_outline.png",
"fpm": [
"--deb-systemd=pi-tool-daemon.service"
],
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3",
"lxterminal",
"libraspberrypi-bin",
"libxss-dev"
]
}
}
}