-
-
Save tbeswick96/798a5d07bfede1197b65d097ed0b4e95 to your computer and use it in GitHub Desktop.
This file contains 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": "launcher", | |
"version": "1.0.0", | |
"description": "Launcher", | |
"main": "main.js", | |
"private": true, | |
"scripts": { | |
"postinstall": "npm run postinstall:electron && electron-builder install-app-deps", | |
"postinstall:web": "node postinstall-web", | |
"postinstall:electron": "node postinstall", | |
"ng": "ng", | |
"start": "npm run postinstall:electron && npm run build:dotnet:debug && npm-run-all -p ng:serve electron:serve", | |
"build": "npm run postinstall:electron && npm run electron:serve-tsc && ng build", | |
"build:dev": "npm run build -- -c dev && npm run build:dotnet:debug", | |
"build:prod": "npm run build -- -c production && npm run build:dotnet:release", | |
"build:dotnet:debug": "dotnet build src/library/Library.sln -c debug", | |
"build:dotnet:release": "dotnet build src/library/Library.sln -c release", | |
"ng:serve": "ng serve", | |
"ng:serve:web": "npm run postinstall:web && ng serve -o", | |
"electron:serve-tsc": "tsc -p tsconfig-serve.json", | |
"electron:serve": "wait-on http-get://localhost:4300/ && npm run electron:serve-tsc && electron . --serve", | |
"electron:local": "npm run build:prod && electron .", | |
"electron:windows": "npm run build:prod && electron-builder build --windows", | |
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md" | |
}, | |
"devDependencies": { | |
"@angular-devkit/build-angular": "0.12.1", | |
"@angular/animations": "^7.2.7", | |
"@angular/cdk": "^7.3.3", | |
"@angular/cli": "7.3.3", | |
"@angular/common": "7.2.7", | |
"@angular/compiler": "7.2.7", | |
"@angular/compiler-cli": "7.2.7", | |
"@angular/core": "7.2.7", | |
"@angular/forms": "7.2.7", | |
"@angular/http": "7.2.7", | |
"@angular/language-service": "7.2.7", | |
"@angular/material": "^7.3.3", | |
"@angular/platform-browser": "7.2.7", | |
"@angular/platform-browser-dynamic": "7.2.7", | |
"@angular/router": "7.2.7", | |
"@types/node": "8.9.4", | |
"codelyzer": "4.5.0", | |
"conventional-changelog-cli": "2.0.11", | |
"core-js": "2.6.1", | |
"electron-builder": "20.36.2", | |
"electron-reload": "1.3.0", | |
"npm-run-all": "4.1.5", | |
"rxjs": "6.4.0", | |
"ts-node": "7.0.1", | |
"tslint": "5.11.0", | |
"typescript": "3.2.4", | |
"wait-on": "3.2.0", | |
"webdriver-manager": "12.1.0", | |
"zone.js": "0.8.29" | |
}, | |
"dependencies": { | |
"@aspnet/signalr": "^1.1.2", | |
"@auth0/angular-jwt": "^2.1.0", | |
"@types/electron-settings": "^3.1.1", | |
"electron": "^4.1.1", | |
"electron-edge-js": "^10.11.1", | |
"electron-log": "^3.0.3", | |
"electron-settings": "^3.2.0", | |
"ngx-permissions": "^6.0.4" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment