-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) Β· 4.35 KB
/
package.json
File metadata and controls
122 lines (122 loc) Β· 4.35 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
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
117
118
119
120
121
122
{
"name": "cibertron",
"version": "0.1.1",
"description": "Application build with Angular and Electron for monitoring your local network terminals",
"author": "KuroMicho & YosstinCode",
"license": "MIT",
"main": "./dist/main.js",
"scripts": {
"ng": "ng",
"nodemon": "nodemon",
"electron": "electron",
"ng:serve": "ng serve",
"start": "concurrently \"npm run ng:serve\" \"npm run electron:serve\"",
"electron:serve": "wait-on tcp:4200 && nodemon",
"electron:tsc": "tsc -p tsconfig.serve.json",
"electron:dev": "npm run electron:tsc && electron ./dist/main.js",
"build": "ng build && npm run electron:tsc && cp .env ./dist/.env",
"build:base": "ng build --base-href ./ && npm run electron:tsc && cp .env ./dist/.env",
"build:installer": "node ./scripts/installer.js",
"build:all": "npm run build && npm run forge:package && npm run build:installer",
"test": "ng test --watch=false",
"lint": "ng lint",
"lint:fix": "ng lint --fix",
"forge:start": "electron-forge start",
"forge:package": "electron-forge package",
"forge:make": "electron-forge make"
},
"dependencies": {
"@angular/animations": "^15.0.0",
"@angular/cdk": "^15.1.1",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/material": "^15.1.1",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"dotenv": "^16.0.3",
"electron-store": "^8.1.0",
"express": "^4.18.2",
"node-ssh": "^13.0.1",
"rxjs": "~7.5.0",
"socket.io": "^4.5.4",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.4",
"@angular-eslint/builder": "15.2.0",
"@angular-eslint/eslint-plugin": "15.2.0",
"@angular-eslint/eslint-plugin-template": "15.2.0",
"@angular-eslint/schematics": "15.2.0",
"@angular-eslint/template-parser": "15.2.0",
"@angular/cli": "~15.0.4",
"@angular/compiler-cli": "^15.0.0",
"@electron-forge/cli": "^6.0.4",
"@electron-forge/maker-deb": "^6.0.4",
"@electron-forge/maker-rpm": "^6.0.4",
"@electron-forge/maker-squirrel": "^6.0.4",
"@electron-forge/maker-zip": "^6.0.4",
"@types/express": "^4.17.15",
"@types/jasmine": "~4.3.0",
"@types/ssh2": "^1.11.7",
"@types/ssh2-streams": "^0.1.9",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"concurrently": "^7.6.0",
"electron": "^22.0.3",
"electron-winstaller": "^5.1.0",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jasmine-core": "~4.5.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.3",
"prettier-eslint": "^15.0.1",
"ts-node": "^10.9.1",
"typescript": "~4.8.2",
"wait-on": "^7.0.1"
},
"config": {
"forge": {
"packagerConfig": {
"options": {
"name": "cibertron",
"platform": "win32",
"arch": "x64",
"overwrite": true
},
"asar": true
},
"makers": [
{
"name": "@electron-forge/maker-squirrel",
"config": {
"name": "electron_quick_start"
}
},
{
"name": "@electron-forge/maker-zip",
"platforms": [
"darwin"
]
},
{
"name": "@electron-forge/maker-deb",
"config": {}
},
{
"name": "@electron-forge/maker-rpm",
"config": {}
}
]
}
}
}