This repository has been archived by the owner on Jan 17, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.77 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
113
114
{
"name": "electron-angular-native",
"version": "3.0.0",
"license": "Apache-2.0",
"author": "Evgeny Barabanov",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "https://github.com/meltedspark/electron-angular-native"
},
"main": "serve/main.electron.js",
"keywords": [
"electron",
"native",
"angular",
"typescript",
"boilerplate",
"node",
"addon"
],
"scripts": {
"postinstall": "npm run electron:build:native",
"ng": "ng",
"test": "ng test",
"lint": "ng lint",
"start": "cross-env DEBUG=ngx* npm-run-all -p ng:serve electron:serve",
"start:prod": "rimraf serve && npm run electron:build:serve && concurrently \"npm run ng:watch:prod\" \"electron . --serve\"",
"build": "npm run ng:build:prod && npm run electron:build:dist",
"build:dev": "npm run ng:build:dev && npm run electron:build:dist",
"electron:serve": "npm run electron:build:serve && wait-on http-get://localhost:4200/ && electron . --serve",
"electron:build:native": "electron-rebuild && rimraf build bin",
"electron:build:serve": "tsc -p tsconfig.electron.json",
"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/",
"ng:serve": "ng serve",
"dist": "npm run build && npm run clean-build && npx electron-builder build",
"dist:dev": "npm run build:dev && npm run clean-build && npx electron-builder build",
"dist:windows:32": "cross-env ARCH=ia32 PLATFORM=win32 npm run build && npm run clean-build && npx electron-builder build --windows --ia32",
"dist:windows:64": "cross-env ARCH=x64 PLATFORM=win32 npm run build && npm run clean-build && npx electron-builder build --windows --x64",
"dist:linux:32": "cross-env ARCH=ia32 PLATFORM=linux npm run build && npm run clean-build && npx electron-builder build --linux --ia32",
"dist:linux:64": "cross-env ARCH=x64 PLATFORM=linux npm run build && npm run clean-build && npx electron-builder build --linux --x64",
"dist:osx": "cross-env ARCH=x64 PLATFORM=mac npm run build && npm run clean-build && npx electron-builder build --mac",
"clean-build": "rimraf build-artifacts build"
},
"dependencies": {
"@angular/animations": "7.0.2",
"@angular/cdk": "7.0.2",
"@angular/common": "7.0.2",
"@angular/compiler": "7.0.2",
"@angular/core": "7.0.2",
"@angular/forms": "7.0.2",
"@angular/http": "7.0.2",
"@angular/platform-browser": "7.0.2",
"@angular/platform-browser-dynamic": "7.0.2",
"@angular/router": "7.0.2",
"@catamaran/hull": "../catamaran-hull",
"@dicebear/avatars": "2.0.4",
"@dicebear/avatars-identicon-sprites": "1.0.3",
"@fortawesome/angular-fontawesome": "^0.3.0",
"@fortawesome/fontawesome-svg-core": "^1.2.9",
"@fortawesome/free-solid-svg-icons": "^5.6.0",
"@nebular/theme": "3.0.0",
"@ngxs/router-plugin": "3.3.2",
"@ngxs/store": "3.3.0",
"core-js": "2.5.7",
"electron": "3.0.7",
"eva-icons": "1.1.1",
"ffi-napi": "2.4.3",
"highlight.js": "9.13.1",
"nebular-icons": "1.1.0",
"ngx-electron": "1.0.4",
"rxjs": "6.3.3",
"ssb-client": "4.6.0",
"ssb-markdown": "4.0.0",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-builders/custom-webpack": "7.0.0",
"@angular-devkit/build-angular": "0.10.4",
"@angular/cli": "7.0.4",
"@angular/compiler-cli": "7.0.2",
"@angular/language-service": "7.0.2",
"@schematics/angular": "7.0.2",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/ffi-napi": "2.4.0",
"@types/mocha": "5.2.5",
"@types/node": "~10.12.6",
"@types/webdriverio": "4.13.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"codelyzer": "4.5.0",
"concurrently": "4.0.1",
"cross-env": "5.2.0",
"electron-builder": "20.31.2",
"electron-rebuild": "1.8.2",
"electron-reload": "1.2.5",
"mocha": "5.2.0",
"node-loader": "0.6.0",
"node-sass": "4.10.0",
"npm-run-all": "4.1.3",
"spectron": "5.0.0",
"ts-mocha": "2.0.0",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "~3.1.6",
"wait-on": "2.1.0"
}
}