-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
102 lines (102 loc) · 3.46 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
{
"name": "car-maintenance",
"version": "4.3.0",
"description": "App for log your car parts maintenance such as engine, oil and any what you want! Manage cost, date and mileage.",
"homepage": "https://github.com/mkinitcpio/car-maintenance",
"author": {
"name": "Aliaksandr Kazhamiaka",
"email": "aliaksandr.kazhamiaka@gmail.com"
},
"keywords": [
"angular",
"angular 17",
"electron",
"nodejs",
"typescript",
"spectron",
"eslint",
"sass",
"windows",
"mac",
"linux"
],
"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-linux": "npm run build:prod && electron-builder --linux",
"electron:build-mac": "npm run build:prod && electron-builder --mac",
"electron:build-windows": "npm run build:prod && electron-builder --windows",
"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",
"lint": "ng lint"
},
"dependencies": {
"@angular/animations": "18.1.3",
"@angular/cdk": "18.1.3",
"@angular/common": "18.1.3",
"@angular/compiler": "18.1.3",
"@angular/core": "18.1.3",
"@angular/forms": "18.1.3",
"@angular/language-service": "18.1.3",
"@angular/material": "18.1.3",
"@angular/platform-browser": "18.1.3",
"@angular/platform-browser-dynamic": "18.1.3",
"@angular/router": "18.1.3",
"@electron/remote": "2.1.2",
"@ngrx/effects": "18.0.2",
"@ngrx/store": "18.0.2",
"@ngrx/store-devtools": "18.0.2",
"app-builder": "7.0.4",
"app-builder-bin": "4.2.0",
"electron-store": "8.1.0",
"material-icons": "1.10.6",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"uuid": "8.3.1",
"zone.js": "0.14.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "18.0.0",
"@angular-builders/jest": "18.0.0",
"@angular-devkit/build-angular": "18.1.3",
"@angular-eslint/builder": "18.2.0",
"@angular-eslint/eslint-plugin": "18.2.0",
"@angular-eslint/eslint-plugin-template": "18.2.0",
"@angular-eslint/schematics": "18.2.0",
"@angular-eslint/template-parser": "18.2.0",
"@angular/cli": "18.1.3",
"@angular/compiler-cli": "18.1.3",
"@ngx-translate/core": "15.0.0",
"@ngx-translate/http-loader": "8.0.0",
"@playwright/test": "1.40.1",
"@types/jest": "29.5.11",
"@types/node": "20.10.5",
"@typescript-eslint/eslint-plugin": "8.0.0",
"@typescript-eslint/parser": "8.0.0",
"conventional-changelog-cli": "3.0.0",
"electron": "31.3.1",
"electron-builder": "24.13.3",
"electron-debug": "4.0.0",
"electron-reloader": "1.2.3",
"eslint": "9.8.0",
"jest": "29.7.0",
"node-polyfill-webpack-plugin": "2.0.1",
"npm-run-all": "4.1.5",
"playwright": "1.40.1",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"wait-on": "7.2.0",
"webdriver-manager": "12.1.9"
}
}