skirda-launcher/package.json
2022-08-26 14:34:21 +03:00

109 lines
3.4 KiB
JSON

{
"name": "skirda-launcher",
"version": "0.0.0",
"description": "no text",
"homepage": "https://github.com/maximegris/angular-electron",
"author": {
"name": "Greg Brzezinski",
"email": "gregory_brzezinski@protonmail.com"
},
"keywords": [
"angular",
"angular 14",
"electron",
"electron 19",
"nodejs",
"typescript",
"playwright",
"eslint",
"sass",
"windows",
"mac",
"linux"
],
"main": "app/main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c web -o",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"web:build": "npm run build -- -c web-production",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:build": "npm run build:prod && electron-builder build --publish=never",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run build:prod && playwright test -c e2e/playwright.config.ts e2e/",
"e2e:show-trace": "playwright show-trace e2e/tracing/trace.zip",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"dependencies": {
"@angular/common": "14.0.6",
"@angular/compiler": "14.0.6",
"@angular/core": "14.0.6",
"@angular/forms": "14.0.6",
"@angular/language-service": "14.0.6",
"@angular/platform-browser": "14.0.6",
"@angular/platform-browser-dynamic": "14.0.6",
"@angular/router": "14.0.6",
"rxjs": "7.5.6",
"tslib": "^2.4.0",
"zone.js": "~0.11.6"
},
"devDependencies": {
"@angular-builders/custom-webpack": "14.0.0",
"@angular-devkit/build-angular": "14.0.6",
"@angular-eslint/builder": "14.0.2",
"@angular-eslint/eslint-plugin": "14.0.2",
"@angular-eslint/eslint-plugin-template": "14.0.2",
"@angular-eslint/schematics": "14.0.2",
"@angular-eslint/template-parser": "14.0.2",
"@angular/cli": "14.0.6",
"@angular/compiler-cli": "14.0.6",
"@ngx-translate/core": "14.0.0",
"@ngx-translate/http-loader": "7.0.0",
"@playwright/test": "1.23.4",
"@types/jasmine": "4.0.3",
"@types/jasminewd2": "2.0.10",
"@types/node": "18.0.6",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"conventional-changelog-cli": "2.2.2",
"electron": "19.0.8",
"electron-builder": "23.1.0",
"electron-debug": "3.2.0",
"electron-reloader": "1.2.3",
"eslint": "8.20.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "4.2.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "7.2.0",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"node-polyfill-webpack-plugin": "2.0.0",
"npm-run-all": "4.1.5",
"playwright": "^1.23.4",
"ts-node": "10.9.1",
"typescript": "~4.7.4",
"wait-on": "6.0.1",
"webdriver-manager": "12.1.8"
},
"engines": {
"node": ">= 14.15.0"
},
"browserslist": [
"chrome 100"
]
}