This repository has been archived by the owner on Jul 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
112 lines (112 loc) · 4.2 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
105
106
107
108
109
110
111
112
{
"name": "timoneer",
"version": "0.6.0",
"homepage": "https://github.com/leonardochaia/timoneer",
"repository": "https://github.com/leonardochaia/timoneer",
"description": "Docker Client",
"author": {
"name": "Leonardo Chaia",
"email": "[email protected]"
},
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "yarn postinstall:electron && npx electron-builder install-app-deps",
"postinstall:web": "node postinstall-web && yarn gen-ver",
"postinstall:electron": "node postinstall",
"gen-ver": "node tim-version-gen",
"gen-changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"gen-releasenotes": "conventional-changelog -p angular -i release-notes.md -s",
"start": "yarn postinstall:electron && yarn gen-ver && npm-run-all -p ng:serve electron:serve ",
"build": "yarn postinstall:electron && yarn gen-ver && yarn electron:tsc && ng build",
"build:dev": "yarn build -c dev",
"build:prod": "yarn gen-releasenotes && yarn build -c production",
"ng:serve": "ng serve --configuration hmr",
"ng:serve:web": "yarn postinstall:web && ng serve -o",
"electron:tsc": "tsc main.ts --lib es2017,es2016,es2015,dom",
"electron:serve": "wait-on http-get://localhost:4200/ && yarn electron:tsc && electron . --serve --remote-debugging-port=9222",
"electron:local": "yarn build:prod && electron .",
"electron:linux": "yarn build:prod && npx electron-builder build --linux",
"electron:windows": "yarn build:prod && npx electron-builder build --windows",
"electron:mac": "yarn build:prod && npx electron-builder build --mac",
"electron:build": "yarn build:prod && npx electron-builder build --publish never",
"release": "yarn build:prod && electron-builder",
"travis-pre-build": "yarn install",
"bump-version": "node bump-version && yarn gen-changelog",
"test": "ng test --watch=false --progress=false",
"test:watch": "ng test --watch"
},
"dependencies": {
"electron-settings": "^3.2.0",
"electron-updater": "^3.1.6"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.10.4",
"@angular/animations": "^7.0.2",
"@angular/cdk": "^7.0.2",
"@angular/cli": "^7.0.4",
"@angular/common": "^7.0.2",
"@angular/compiler": "^7.0.2",
"@angular/compiler-cli": "^7.0.2",
"@angular/core": "^7.0.2",
"@angular/flex-layout": "^7.0.0-beta.19",
"@angular/forms": "^7.0.2",
"@angular/http": "^7.0.2",
"@angular/language-service": "^7.0.2",
"@angular/material": "^7.0.2",
"@angular/platform-browser": "^7.0.2",
"@angular/platform-browser-dynamic": "^7.0.2",
"@angularclass/hmr": "^2.1.3",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.0.1",
"@types/dockerode": "^2.5.6",
"@types/electron-settings": "^3.1.1",
"@types/filesize": "^3.6.0",
"@types/jasmine": "^2.8.6",
"@types/jasminewd2": "^2.0.3",
"@types/mousetrap": "^1.6.0",
"@types/node": "^10.12.1",
"@types/url-parse": "^1.4.1",
"@types/uuid": "^3.4.4",
"angular-pipes": "^9.0.2",
"codelyzer": "^4.5.0",
"commitlint": "^7.2.1",
"conventional-changelog-cli": "^2.0.11",
"conventional-recommended-bump": "^4.0.4",
"core-js": "^2.5.7",
"dockerode": "^2.5.7",
"electron": "^3.0.7",
"electron-builder": "^20.31.2",
"electron-reload": "^1.2.5",
"fast-text-encoding": "^1.0.0",
"filesize": "^3.6.1",
"git-rev-sync": "^1.12.0",
"hammerjs": "^2.0.8",
"husky": "^1.1.2",
"idb-keyval": "^3.1.0",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.1",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-electron": "^6.0.0",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "~1.4.0",
"material-icons": "^0.2.3",
"mousetrap": "^1.6.2",
"npm-run-all": "^4.1.3",
"npx": "10.2.0",
"path": "^0.12.7",
"rxjs": "^6.3.3",
"split-ca": "^1.0.1",
"tslint": "^5.11.0",
"typescript": "^3.1.6",
"url-parse": "^1.4.3",
"uuid": "^3.3.2",
"wait-on": "^3.1.0",
"webdriver-manager": "^12.1.0",
"www-authenticate": "^0.6.2",
"xterm": "^3.8.0",
"zone.js": "0.8.26"
}
}