-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (115 loc) · 3.83 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "servihelper",
"version": "5.15.1",
"description": "Servihelper",
"author": {
"name": "Moisés Medina Vicente",
"email": "[email protected]"
},
"keywords": [
"servihelper"
],
"main": "app/main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"tsc": "tsc",
"tsc:main": "tsc ./app/main.ts",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "ng build -c production",
"build:debug": "ng build -c debug",
"ng:serve": "ng serve -c dev",
"transloco:optimize": "transloco-optimize dist/assets/i18n",
"electron:serve-tsc": "tsc -p tsconfig.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
"electron:local": "npm run build && npx electron .",
"electron:build": "electron-builder build --publish=never",
"release:windows": "npm run electron:build && npm run clean:release",
"release:mac:universal": "npm run electron:build -- --universal && npm run clean:release",
"release:linux": "npm run electron:build && npm run clean:release",
"clean:release": "node scripts/clean-release.js",
"test": "ng test --watch=false",
"test:watch": "ng test",
"lint": "ng lint",
"i18n:extract": "transloco-keys-manager extract",
"i18n:find": "transloco-keys-manager find",
"i18n:find:add": "transloco-keys-manager find --add-missing-keys && node scripts/replace-i18json.js"
},
"dependencies": {
"@angular/animations": "~18.1.2",
"@angular/cdk": "~18.1.3",
"@angular/common": "~18.1.2",
"@angular/compiler": "~18.1.2",
"@angular/core": "~18.1.2",
"@angular/forms": "~18.1.2",
"@angular/language-service": "~18.1.2",
"@angular/material": "~18.1.3",
"@angular/platform-browser": "~18.1.2",
"@angular/platform-browser-dynamic": "~18.1.2",
"@angular/router": "~18.1.2",
"@ngneat/transloco": "6.0.4",
"@ngneat/transloco-locale": "5.1.1",
"@ngneat/transloco-optimize": "^5.0.3",
"@swimlane/ngx-charts": "^20.5.0",
"@types/leaflet": "^1.9.8",
"date-fns": "3.0.6",
"filenamify": "6.0.0",
"html-to-image": "1.11.11",
"jspdf": "2.5.1",
"jspdf-autotable": "3.8.2",
"leaflet": "^1.9.4",
"nanoid": "^5.0.7",
"ngx-editor": "^16.0.1",
"pako": "^2.1.0",
"rxjs": "7.8.1",
"tslib": "^2.6.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "~18.0.0",
"@angular-eslint/builder": "18.1.0",
"@angular-eslint/eslint-plugin": "18.1.0",
"@angular-eslint/eslint-plugin-template": "18.1.0",
"@angular-eslint/schematics": "18.1.0",
"@angular-eslint/template-parser": "18.1.0",
"@angular/build": "^18.1.2",
"@angular/cli": "~18.1.2",
"@angular/compiler-cli": "~18.1.2",
"@electron/universal": "2.0.1",
"@ngneat/transloco-keys-manager": "3.7.0",
"@types/fs-extra": "~11.0.0",
"@types/node": "18.16.3",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"adm-zip": "0.5.14",
"bootstrap": "~5.3.0",
"cross-env": "7.0.3",
"electron": "31.3.0",
"electron-builder": "24.13.3",
"electron-reload": "2.0.0-alpha.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "~9.1.0",
"eslint-plugin-import": "~2.29.1",
"eslint-plugin-jsdoc": "~48.2.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-unused-imports": "^3.2.0",
"fs-extra": "~11.2.0",
"nan": "2.19.0",
"normalize.css": "8.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.2.5",
"sort-json": "2.0.1",
"ts-node": "10.9.1",
"typescript": "5.5.4",
"wait-on": "~7.0.1",
"webdriver-manager": "12.1.9"
},
"optionalDependencies": {
"dmg-license": "1.0.11"
},
"engines": {
"node": ">=14.0.0"
}
}