-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 3.05 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
{
"name": "webview-angular-electron",
"version": "1.0.1",
"description": "Manage multiples WebView with Angular e Electron",
"author": {
"email": "[email protected]",
"name": "Jhonatan Hardt de Medeiros",
"url": "https://jhonatanmedeiros.com"
},
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve --",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build --",
"build:prod": "npm run build -- --prod",
"ng:serve": "ng serve -- --port=4200",
"ng:serve:web": "npm run ng:serve --",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && electron-builder build --linux",
"electron:windows": "npm run build:prod && electron-builder build --win --x64",
"electron:mac": "npm run build:prod && electron-builder build --mac",
"release": "node scripts/release.js",
"release:changelog": "standard-changelog",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"main": "main.js",
"private": false,
"dependencies": {
"@angular/animations": "~9.1.1",
"@angular/common": "~9.1.1",
"@angular/compiler": "~9.1.1",
"@angular/core": "~9.1.1",
"@angular/forms": "~9.1.1",
"@angular/platform-browser": "~9.1.1",
"@angular/platform-browser-dynamic": "~9.1.1",
"@angular/router": "~9.1.1",
"@fortawesome/fontawesome-free": "^5.13.0",
"bootstrap": "^4.5.0",
"electron-store": "^5.1.1",
"ngx-bootstrap": "^5.6.1",
"rxjs": "~6.5.4",
"tslib": "^1.10.0",
"uuid": "^8.1.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.1",
"@angular-devkit/build-ng-packagr": "~0.901.7",
"@angular/cli": "~9.1.1",
"@angular/compiler-cli": "~9.1.1",
"@angular/language-service": "~9.1.1",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-angular": "^8.3.4",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"devtron": "^1.4.0",
"electron": "^9.0.0",
"electron-builder": "^22.6.1",
"electron-reload": "^1.5.0",
"husky": "^4.2.5",
"inquirer": "^7.1.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-jasmine": "~3.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"minimist": "^1.2.5",
"ng-packagr": "^9.0.0",
"npm-run-all": "^4.1.5",
"protractor": "~5.4.3",
"semver": "^7.3.2",
"standard-changelog": "^2.0.24",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.8.3",
"wait-on": "^5.0.0"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS && npm run lint"
}
}
}