Files
AngularTicTacToe/package.json
2020-08-12 21:09:33 +02:00

96 lines
3.2 KiB
JSON

{
"name": "angular-electron",
"version": "8.0.2",
"description": "Angular 10 with Electron (Typescript + SASS + Hot Reload)",
"homepage": "https://github.com/maximegris/angular-electron",
"author": {
"name": "Maxime GRIS",
"email": "maxime.gris@gmail.com"
},
"keywords": [
"angular",
"angular 10",
"electron",
"typescript",
"eslint",
"spectron",
"sass"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve -c web -o",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
"electron:local": "npm run build:prod && npx electron .",
"electron:build": "npm run build:prod && electron-builder build",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run build:prod && cross-env TS_NODE_PROJECT='e2e/tsconfig.e2e.json' mocha --timeout 300000 --require ts-node/register e2e/**/*.e2e.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"devDependencies": {
"@angular-builders/custom-webpack": "9.2.0",
"@angular-devkit/build-angular": "0.1000.5",
"@angular-eslint/builder": "0.0.1-alpha.32",
"@angular-eslint/eslint-plugin": "0.0.1-alpha.32",
"@angular-eslint/eslint-plugin-template": "0.0.1-alpha.32",
"@angular-eslint/template-parser": "0.0.1-alpha.32",
"@angular/cli": "10.0.5",
"@angular/common": "10.0.7",
"@angular/compiler": "10.0.7",
"@angular/compiler-cli": "10.0.7",
"@angular/core": "10.0.7",
"@angular/forms": "10.0.7",
"@angular/language-service": "10.0.7",
"@angular/platform-browser": "10.0.7",
"@angular/platform-browser-dynamic": "10.0.7",
"@angular/router": "10.0.7",
"@ngx-translate/core": "13.0.0",
"@ngx-translate/http-loader": "6.0.0",
"@types/jasmine": "3.5.12",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "8.0.1",
"@types/node": "12.12.6",
"@typescript-eslint/eslint-plugin": "3.8.0",
"@typescript-eslint/eslint-plugin-tslint": "3.8.0",
"@typescript-eslint/parser": "3.8.0",
"chai": "4.2.0",
"conventional-changelog-cli": "2.0.34",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"electron": "9.1.2",
"electron-builder": "22.8.0",
"electron-reload": "1.5.0",
"eslint": "7.6.0",
"eslint-plugin-import": "2.22.0",
"jasmine-core": "3.6.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "6.3.1",
"karma-jasmine": "3.3.1",
"karma-jasmine-html-reporter": "1.5.4",
"mocha": "8.1.0",
"npm-run-all": "4.1.5",
"rxjs": "6.6.2",
"spectron": "11.1.0",
"ts-node": "8.10.2",
"tslib": "2.0.0",
"typescript": "3.9.7",
"wait-on": "5.0.1",
"webdriver-manager": "12.1.7",
"zone.js": "0.10.3"
},
"engines": {
"node": ">=10.13.0"
}
}