Last active
May 30, 2019 15:53
-
-
Save YannMjl/1effff9177299e4bbd478f0617b65e50 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "my-angular-electron-app-demo", | |
| "version": "0.0.0", | |
| "main": "main.js", // <-- update here | |
| "scripts": { | |
| "ng": "ng", | |
| "start": "ng serve", | |
| "build": "ng build", | |
| "test": "ng test", | |
| "lint": "ng lint", | |
| "e2e": "ng e2e", | |
| "electron": "electron .", // <-- run electron | |
| "electron-build": "ng build --prod && npm run electron ." // <-- build app, then run electron | |
| }, | |
| "private": true, | |
| "dependencies": { | |
| "@angular/animations": "~7.1.0", | |
| "@angular/common": "~7.1.0", | |
| "@angular/compiler": "~7.1.0", | |
| "@angular/core": "~7.1.0", | |
| "@angular/forms": "~7.1.0", | |
| "@angular/platform-browser": "~7.1.0", | |
| "@angular/platform-browser-dynamic": "~7.1.0", | |
| "@angular/router": "~7.1.0", | |
| "core-js": "^2.5.4", | |
| "rxjs": "~6.3.3", | |
| "tslib": "^1.9.0", | |
| "zone.js": "~0.8.26" | |
| }, | |
| "devDependencies": { | |
| "@angular-devkit/build-angular": "^0.12.3", | |
| "@angular/cli": "~7.1.3", | |
| "@angular/compiler-cli": "~7.1.0", | |
| "@angular/language-service": "~7.1.0", | |
| "@types/jasmine": "~2.8.8", | |
| "@types/jasminewd2": "~2.0.3", | |
| "@types/node": "~8.9.4", | |
| "codelyzer": "~4.5.0", | |
| "electron": "^4.0.3", | |
| "jasmine-core": "~2.99.1", | |
| "jasmine-spec-reporter": "~4.2.1", | |
| "karma": "~3.1.1", | |
| "karma-chrome-launcher": "~2.2.0", | |
| "karma-coverage-istanbul-reporter": "~2.0.1", | |
| "karma-jasmine": "~1.1.2", | |
| "karma-jasmine-html-reporter": "^0.2.2", | |
| "protractor": "~5.4.0", | |
| "ts-node": "~7.0.0", | |
| "tslint": "~5.11.0", | |
| "typescript": "~3.1.6" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
changes made,from:
“electron”: “electron”,
“electron-build”: “ng build — prod && npm run electron”
to:
“electron”: “electron .”,
“electron-build”: “ng build — prod && npm run electron .”