-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
81 lines (81 loc) · 2.6 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
{
"name": "elterm",
"main": "dist/electron.js",
"description": "El terminador",
"author": "Mark Florence <mflo999@gmail.com>",
"version": "1.0.0",
"license": "MIT",
"build": {
"appId": "elterm"
},
"scripts": {
"build": "rimraf dist && ng build --aot --prod && npm run build-main",
"build-main": "tsc -p tsconfig.main.json",
"clean": "rm -rf node_modules && rm -f package-lock.json && npm install",
"deb64": "electron-installer-debian --src build/elterm-linux-x64/ --arch amd64 --config installer.json",
"deb64-install": "sudo apt install ./build/installers/elterm_1.0.0_amd64.deb",
"live": "npm run build && electron . --ignore-gpu-blacklist",
"package": "npm run build && rimraf build && electron-packager ./ --out=build",
"postinstall": "npm rebuild sass && npm rebuild node-pty && ./node_modules/.bin/electron-rebuild",
"serve": "ng serve",
"test": "npm run build-main && DEV_MODE=1 electron . --ignore-gpu-blacklist",
"toc": "markdown-toc -i README.md"
},
"dependencies": {
"@angular/animations": "8",
"@angular/cdk": "8",
"@angular/common": "8",
"@angular/compiler": "8",
"@angular/core": "8",
"@angular/forms": "8",
"@angular/material": "8",
"@angular/platform-browser": "8",
"@angular/platform-browser-dynamic": "8",
"@fortawesome/angular-fontawesome": "0.4.0",
"@fortawesome/fontawesome-svg-core": "1",
"@fortawesome/free-brands-svg-icons": "5",
"@fortawesome/free-regular-svg-icons": "5",
"@fortawesome/free-solid-svg-icons": "5",
"@ngxs/devtools-plugin": "3",
"@ngxs/logger-plugin": "3",
"@ngxs/storage-plugin": "3",
"@ngxs/store": "3",
"angular-split": "3",
"angular2-uuid": "1",
"ellib": "latest",
"fontfaceobserver": "2",
"hammerjs": "2",
"ngx-contextmenu": "5",
"ngx-drag-drop": "2",
"ngx-electron": "2",
"node-pty": "0.9.0-beta19",
"ps-tree": "1",
"roboto-fontface": "^0.10.0",
"rxjs": "6",
"rxjs-compat": "6",
"typeface-roboto-mono": "^0.0.54",
"xterm": "3",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.0",
"@angular/cli": "8",
"@angular/compiler-cli": "8",
"@angular/language-service": "8",
"@types/node": "12",
"@types/ps-tree": "1",
"codelyzer": "5",
"devtron": "1",
"electron": "5",
"electron-devtools-installer": "2",
"electron-installer-debian": "2",
"electron-packager": "14",
"electron-rebuild": "1",
"eslint": "6",
"markdown-toc": "1",
"rimraf": "2",
"ts-node": "8",
"tslint": "5",
"typescript": "3.4.5"
}
}