-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.68 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
{
"name": "diagnostic-client",
"version": "14.0.0",
"description": "Client fo diagnostic",
"author": "Da Silva Serge",
"license": "MIT",
"main": "electron-dist/electron-app.js",
"scripts": {
"ng": "ng",
"start": "ng serve",
"prod": "http-server dist --cors -p 888",
"build": "ng build --configuration production",
"build:electron": "tsc --project tsconfig-electron.json",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e:watch": "watch \"npm run e2e\" src e2e --wait=1",
"deploy": "firebase login --reauth && firebase deploy",
"electron-builder": "electron-builder",
"electron": "npm run build:electron && ng build && electron .",
"start:electron": "electron .",
"package": "electron-packager . diagnostic --platform=win32 --arch=x64 --overwrite --icon src/favicon.ico"
},
"private": true,
"dependencies": {
"@angular/animations": "~14.2.3",
"@angular/cdk": "~14.2.2",
"@angular/common": "~14.2.3",
"@angular/core": "~14.2.3",
"@angular/forms": "~14.2.3",
"@angular/material": "~14.2.2",
"@angular/platform-browser": "~14.2.3",
"@angular/platform-browser-dynamic": "~14.2.3",
"@angular/router": "~14.2.3",
"core-js": "~3.25.2",
"diagnostic-server": "~3.2.0",
"global": "4.4.0",
"jsonfile": "~6.1.0",
"mkdirp": "~1.0.4",
"rxjs": "~7.5.6",
"zone.js": "~0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "~14.2.3",
"@angular/cli": "~14.2.3",
"@angular/compiler": "~14.2.3",
"@angular/compiler-cli": "~14.2.3",
"@angular/language-service": "~14.2.3",
"@hug/eslint-config": "~9.0.1",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.10",
"@types/jsonfile": "~6.1.0",
"@types/mkdirp": "~1.0.2",
"@types/node": "~18.7.19",
"concurrently": "~7.4.0",
"del-cli": "~5.0.0",
"electron": "~20.2.0",
"electron-builder": "~23.5.1",
"electron-packager": "~16.0.0",
"eslint": "~8.24.0",
"eslint-plugin-deprecation": "~1.3.2",
"jasmine-core": "~4.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.0.0",
"karma-mocha-reporter": "~2.2.5",
"ts-node": "~10.9.1",
"typescript": "~4.8.3"
}
}