-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
103 lines (103 loc) · 4.09 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
{
"name": "electron-angular-native",
"version": "5.0.0",
"license": "Apache-2.0",
"author": "Evgeny Barabanov",
"engines": {
"node": ">=12"
},
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/electron-angular-native"
},
"main": "serve/main.electron.js",
"keywords": [
"electron",
"native",
"angular",
"typescript",
"boilerplate",
"node",
"addon"
],
"scripts": {
"postinstall": "yarn electron:build:native",
"ng": "ng",
"test": "ng test",
"lint": "ng lint",
"e2e": "ts-mocha -p e2e/tsconfig.json e2e/**/*.e2e-spec.ts",
"start": "rimraf serve && yarn electron:build:serve && concurrently \"yarn ng:watch:dev\" \"electron . --serve\"",
"start:prod": "rimraf serve && yarn electron:build:serve && concurrently \"yarn ng:watch:prod\" \"electron . --serve\"",
"build": "yarn ng:build:prod && yarn electron:build:dist",
"build:dev": "yarn ng:build:dev && yarn electron:build:dist",
"electron:build:native": "electron-rebuild && rimraf build bin",
"electron:build:serve": "tsc src/main.electron.ts --types --outDir serve",
"electron:build:dist": "tsc src/main.electron.ts --types --outDir dist",
"ng:build:prod": "ng build --prod --output-path=dist/",
"ng:build:dev": "ng build --output-path=dist/",
"ng:watch:prod": "ng build --prod --watch --delete-output-path=false --output-path=serve/",
"ng:watch:dev": "ng build --watch --delete-output-path=false --output-path=serve/",
"dist": "yarn build && yarn clean-build && npx electron-builder build --publish never",
"dist:dev": "yarn build:dev && yarn clean-build && npx electron-builder build --publish never",
"dist:windows:32": "cross-env ARCH=ia32 PLATFORM=win32 yarn build && yarn clean-build && npx electron-builder build --windows --ia32 --publish never",
"dist:windows:64": "cross-env ARCH=x64 PLATFORM=win32 yarn build && yarn clean-build && npx electron-builder build --windows --x64 --publish never",
"dist:linux:32": "cross-env ARCH=ia32 PLATFORM=linux yarn build && yarn clean-build && npx electron-builder build --linux --ia32 --publish never",
"dist:linux:64": "cross-env ARCH=x64 PLATFORM=linux yarn build && yarn clean-build && npx electron-builder build --linux --x64 --publish never",
"dist:osx": "cross-env ARCH=x64 PLATFORM=mac yarn build && yarn clean-build && npx electron-builder build --mac --publish never",
"clean-build": "rimraf build-artifacts build"
},
"dependencies": {
"@angular/animations": "^8.1.2",
"@angular/common": "^8.1.2",
"@angular/compiler": "^8.1.2",
"@angular/core": "^8.1.2",
"@angular/forms": "^8.1.2",
"@angular/platform-browser": "^8.1.2",
"@angular/platform-browser-dynamic": "^11.2.11",
"@angular/router": "^11.2.11",
"core-js": "^3.11.0",
"electron": "^6.0.3",
"ffi-napi": "^2.5.0",
"ngx-electron": "^2.1.1",
"rxjs": "^6.6.7",
"zone.js": "^0.9.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^8.4.1",
"@angular-devkit/build-angular": "^0.803.26",
"@angular/cli": "^8.3.25",
"@angular/compiler-cli": "^8.1.2",
"@angular/language-service": "^11.2.10",
"@types/chai": "^4.2.16",
"@types/chai-as-promised": "^7.1.3",
"@types/ffi-napi": "^2.4.3",
"@types/jasmine": "~3.6.8",
"@types/jasminewd2": "~2.0.9",
"@types/mocha": "^8.2.2",
"@types/node": "~14.14.3",
"@types/webdriverio": "^5.0.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"codelyzer": "^6.0.1",
"concurrently": "^6.0.2",
"cross-env": "^7.0.3",
"electron-builder": "^22.10.5",
"electron-rebuild": "^2.3.5",
"electron-reload": "^1.5.0",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"mocha": "^8.3.2",
"nan": "^2.14.2",
"node-loader": "^0.6.0",
"spectron": "^7.0.0",
"ts-mocha": "^8.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"typescript": "3.4"
}
}