-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.06 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
{
"name": "electron-monitor-app",
"version": "0.0.23-beta",
"main": "electron/main.js",
"productName": "System-Monitor",
"artifactName": "${productName}-${arch}.${ext}",
"author": {
"name": "Andrew Yupin",
"email": "brolo1341@gmail.com"
},
"scripts": {
"ng": "ng",
"start": "electron-forge start",
"test-build": "ng build --base-href ./ && electron .",
"test-local-both": "concurrently \"ng serve --configuration=electron-local\" \"wait-on http://localhost:4200 && electron .\"",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"ng:serve": "ng serve -c -o",
"package": "electron-forge package",
"make": "electron-forge make",
"build-installer": "electron-builder"
},
"repository": "https://github.com/brolo1313/monitoring-app",
"publish": {
"provider": "github",
"releaseType": "release"
},
"build": {
"appId": "System Monitor",
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
}
],
"icon": "src/icon.ico",
"requestedExecutionLevel": "requireAdministrator"
},
"files": [
"dist/browser/**/*",
"electron/**/*",
"package.json"
],
"nsis": {
"artifactName": "${productName}-Installer-${version}.${ext}",
"installerIcon": "src/icon.ico",
"uninstallerIcon": "src/icon.ico",
"uninstallDisplayName": "System Monitor",
"license": "license.txt",
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.4",
"@angular/common": "^18.0.4",
"@angular/compiler": "^18.0.4",
"@angular/core": "^18.0.4",
"@angular/forms": "^18.0.4",
"@angular/platform-browser": "^18.0.4",
"@angular/platform-browser-dynamic": "^18.0.4",
"@angular/router": "^18.0.4",
"concurrently": "^8.2.2",
"electron-log": "^5.1.7",
"electron-squirrel-startup": "^1.0.1",
"electron-updater": "^6.2.1",
"rxjs": "~7.8.0",
"systeminformation": "^5.23.4",
"tslib": "^2.3.0",
"wait-on": "^7.2.0",
"ws": "^8.18.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.5",
"@angular/cli": "^18.0.5",
"@angular/compiler-cli": "^18.0.4",
"@electron-forge/cli": "^7.4.0",
"@electron-forge/maker-deb": "^7.4.0",
"@electron-forge/maker-rpm": "^7.4.0",
"@electron-forge/maker-squirrel": "^7.4.0",
"@electron-forge/maker-zip": "^7.4.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.4.0",
"@electron-forge/plugin-fuses": "^7.4.0",
"@electron/fuses": "^1.8.0",
"@types/jasmine": "~5.1.0",
"electron": "^31.0.2",
"electron-builder": "^24.13.3",
"electron-reloader": "^1.2.3",
"jasmine-core": "~5.1.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"typescript": "~5.4.5"
}
}