This repository has been archived by the owner on Dec 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
98 lines (98 loc) · 3.24 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
{
"name": "bterm",
"version": "2.0.0",
"description": "bterm",
"author": "Bleenco OSS Team <[email protected]>",
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "npm run postinstall:electron && npx electron-builder install-app-deps",
"postinstall:web": "node postinstall-web",
"postinstall:electron": "node postinstall",
"ng": "ng",
"start": "npm run postinstall:electron && npm-run-all -p ng:serve electron:serve",
"build": "npm run postinstall:electron && npm run electron:tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve",
"ng:serve:web": "npm run postinstall:web && ng serve -o",
"electron:tsc": "tsc main.ts",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && npx electron-builder build --linux",
"electron:windows": "npm run build:prod && npx electron-builder build --windows",
"electron:mac": "npm run build:prod && npx electron-builder build --mac",
"test": "npm run postinstall:web && ng test",
"e2e": "npm run postinstall:web && ng e2e"
},
"dependencies": {
"node-pty": "^0.8.0",
"shelljs": "^0.8.3",
"tslib": "^1.9.3",
"xterm": "^3.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.11.4",
"@angular/cli": "7.1.4",
"@angular/common": "7.1.4",
"@angular/compiler": "7.1.4",
"@angular/compiler-cli": "7.1.4",
"@angular/core": "7.1.4",
"@angular/forms": "7.1.4",
"@angular/http": "7.1.4",
"@angular/language-service": "7.1.4",
"@angular/platform-browser": "7.1.4",
"@angular/platform-browser-dynamic": "7.1.4",
"@angular/router": "7.1.4",
"@types/jasmine": "3.3.5",
"@types/node": "10.12.18",
"@types/shelljs": "^0.8.1",
"bulma": "^0.7.2",
"circular-dependency-plugin": "5.0.2",
"codelyzer": "4.5.0",
"copy-webpack-plugin": "4.6.0",
"copyfiles": "2.1.0",
"core-js": "2.6.1",
"cross-env": "5.2.0",
"css-loader": "2.1.0",
"cssnano": "4.1.8",
"electron": "4.0.0",
"electron-builder": "20.38.4",
"electron-rebuild": "^1.8.2",
"electron-reload": "1.4.0",
"enhanced-resolve": "4.1.0",
"exports-loader": "0.7.0",
"file-loader": "3.0.1",
"html-loader": "0.5.5",
"html-webpack-plugin": "3.2.0",
"jasmine": "^3.3.1",
"jasmine-core": "3.3.0",
"jasmine-spec-reporter": "4.2.1",
"json-loader": "0.5.7",
"less-loader": "4.1.0",
"minimist": "1.2.0",
"mkdirp": "0.5.1",
"npm-run-all": "4.1.5",
"npx": "10.2.0",
"raw-loader": "1.0.0",
"rxjs": "6.3.3",
"sass-loader": "7.1.0",
"script-loader": "0.7.2",
"source-map-loader": "0.2.4",
"spectron": "^5.0.0",
"style-loader": "0.23.1",
"stylus-loader": "3.0.2",
"ts-node": "7.0.1",
"tslint": "5.12.0",
"typescript": "~3.1.6",
"uglifyjs-webpack-plugin": "2.1.0",
"url-loader": "1.1.2",
"wait-on": "^3.2.0",
"webdriver-manager": "12.1.1",
"webpack": "4.28.2",
"webpack-concat-plugin": "3.0.0",
"webpack-dev-server": "3.1.14",
"zone.js": "0.8.26"
},
"license": "MIT"
}