-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.41 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.41 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
{
"name": "system_resource_monitor",
"version": "1.0.0",
"main": "dist-electron/main/index.js",
"description": "An app to monitor your system performance.",
"author": "EUSL TC",
"license": "MIT",
"repository": "https://github.com/Dhuvii/system_resource_monitor",
"private": true,
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:7777/"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build && electron-builder",
"release": "tsc && vite build && electron-builder -m -w -l -p 'always'"
},
"dependencies": {
"setinterval": "^0.2.4",
"systeminformation": "^5.17.12"
},
"devDependencies": {
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"chart.js": "^4.2.1",
"date-fns": "^2.29.3",
"electron": "^23.1.1",
"electron-builder": "^23.6.0",
"gsap": "^3.11.5",
"html-react-parser": "^3.0.12",
"postcss": "^8.4.21",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-lottie-player": "^1.5.4",
"sass": "^1.58.3",
"tailwindcss": "^3.2.7",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-electron-plugin": "^0.8.2",
"vite-plugin-electron": "^0.11.1",
"vite-plugin-electron-renderer": "^0.12.1",
"zustand": "^4.3.6"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
}
}