-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.56 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
{
"name": "nesi-ui",
"version": "1.0.0",
"description": "A web and desktop app to interact with the NESi CLI",
"homepage": "https://github.com/inexio/nesi-ui",
"author": {
"name": "Juri Adams",
"email": "[email protected]"
},
"keywords": [
"angular",
"angular 9",
"electron",
"typescript",
"eslint",
"spectron",
"sass"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"test": "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",
"lint": "ng lint",
"prettier": "prettier --write '**/*.{ts,js,css,html,json}' --print-width 120",
"electron:serve": "wait-on http-get://localhost:4200/ && tsc -p tsconfig-serve.json && electron . --serve",
"angular:serve": "ng serve --base-href '/' -c web",
"build:web": "tsc -p tsconfig-serve.json && ng build --base-href '/' -c production",
"build:mac": "tsc -p tsconfig-serve.json && ng build --base-href '.' -c production && electron-builder build --mac",
"build:windows": "tsc -p tsconfig-serve.json && ng build --base-href '.' -c production && electron-builder build --windows",
"build:linux": "tsc -p tsconfig-serve.json && ng build --base-href '.' -c production && electron-builder build --linux",
"serve:web": "ng serve --base-href '/' -c web -o",
"serve:desktop": "npm-run-all -p electron:serve angular:serve"
},
"devDependencies": {
"@angular-builders/custom-webpack": "9.1.0",
"@angular-devkit/build-angular": "0.901.8",
"@angular-eslint/builder": "0.0.1-alpha.18",
"@angular/animations": "9.1.9",
"@angular/cli": "9.1.4",
"@angular/common": "9.1.4",
"@angular/compiler": "9.1.4",
"@angular/compiler-cli": "9.1.4",
"@angular/core": "9.1.4",
"@angular/forms": "9.1.4",
"@angular/language-service": "9.1.4",
"@angular/platform-browser": "9.1.4",
"@angular/platform-browser-dynamic": "9.1.4",
"@angular/router": "9.1.4",
"@types/jasmine": "3.5.10",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "7.0.2",
"@types/node": "12.11.1",
"@typescript-eslint/eslint-plugin": "2.27.0",
"@typescript-eslint/parser": "2.27.0",
"chai": "4.2.0",
"codelyzer": "5.2.2",
"conventional-changelog-cli": "2.0.34",
"core-js": "3.6.5",
"cross-env": "7.0.2",
"devtron": "1.4.0",
"electron": "10.1.3",
"electron-builder": "22.6.0",
"electron-reload": "1.5.0",
"eslint": "6.8.0",
"eslint-plugin-import": "2.20.2",
"jasmine-core": "3.5.0",
"jasmine-spec-reporter": "5.0.2",
"karma": "5.0.4",
"karma-coverage-istanbul-reporter": "3.0.0",
"karma-electron": "6.3.0",
"karma-jasmine": "3.1.1",
"karma-jasmine-html-reporter": "1.5.3",
"mocha": "7.1.2",
"moment": "2.26.0",
"ng-zorro-antd": "9.1.2",
"npm-run-all": "4.1.5",
"rxjs": "6.5.5",
"spectron": "10.0.1",
"ts-node": "8.9.1",
"tslib": "1.11.1",
"typescript": "3.8.3",
"wait-on": "4.0.2",
"webdriver-manager": "12.1.7",
"zone.js": "0.10.3",
"achorn": "0.3.2"
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"update-electron-app": "1.5.0"
}
}