forked from belnadris/angular-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 3.33 KB
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
{
"name": "angular-electron",
"version": "15.0.0",
"description": "Angular 19 with Electron 36 (Typescript + SASS + Hot Reload)",
"homepage": "https://github.com/maximegris/angular-electron",
"author": {
"name": "Maxime GRIS",
"email": "maxime.gris@gmail.com"
},
"keywords": [
"angular",
"angular 19",
"electron",
"electron 36",
"nodejs",
"typescript",
"jest",
"playwright",
"eslint",
"sass",
"windows",
"mac",
"linux"
],
"main": "app/main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"ng:serve": "ng serve -c web -o",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"web:build": "npm run build -- -c web-production",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:dev && electron .",
"electron:build": "npm run build:prod && electron-builder build --publish=never",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run build:prod && playwright test -c e2e/playwright.config.ts e2e/",
"e2e:show-trace": "playwright show-trace e2e/tracing/trace.zip",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"dependencies": {
"@angular/common": "19.2.14",
"@angular/compiler": "19.2.14",
"@angular/core": "19.2.14",
"@angular/forms": "19.2.14",
"@angular/language-service": "19.2.14",
"@angular/platform-browser": "19.2.14",
"@angular/platform-browser-dynamic": "19.2.14",
"@angular/router": "19.2.14",
"rxjs": "7.8.1",
"tslib": "2.6.2",
"zone.js": "0.15.1"
},
"devDependencies": {
"@angular-builders/custom-webpack": "19.0.1",
"@angular-builders/jest": "19.0.1",
"@angular-eslint/builder": "19.7.1",
"@angular-eslint/eslint-plugin": "19.7.1",
"@angular-eslint/eslint-plugin-template": "19.7.1",
"@angular-eslint/schematics": "19.7.1",
"@angular-eslint/template-parser": "19.7.1",
"@angular/build": "^19.2.14",
"@angular/cli": "19.2.14",
"@angular/compiler-cli": "19.2.14",
"@ngx-translate/core": "16.0.4",
"@ngx-translate/http-loader": "16.0.1",
"@playwright/test": "1.52.0",
"@types/jest": "29.5.14",
"@types/node": "22.15.29",
"@typescript-eslint/eslint-plugin": "8.33.1",
"@typescript-eslint/parser": "8.33.1",
"conventional-changelog-cli": "4.1.0",
"electron": "36.4.0",
"electron-builder": "26.0.12",
"electron-debug": "4.1.0",
"electron-reloader": "1.2.3",
"eslint": "9.28.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.7.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jest": "29.7.0",
"node-polyfill-webpack-plugin": "4.1.0",
"npm-run-all": "4.1.5",
"playwright": "1.52.0",
"ts-node": "10.9.2",
"typescript": "5.8.3",
"wait-on": "7.2.0",
"webdriver-manager": "12.1.9"
},
"engines": {
"node": ">= 22.12.0 >= 24.0.0",
"typescript": ">= 5.8.0 < 5.9.0"
},
"browserslist": [
"chrome 136"
]
}