-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.51 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.51 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": "17.1.0",
"description": "Angular 21 with Electron 40 (Typescript + SASS + Hot Reload)",
"homepage": "https://github.com/belnadris/angular-electron",
"author": {
"name": "Maxime GRIS",
"email": "maxime.gris@gmail.com"
},
"keywords": [
"angular",
"angular 21",
"electron",
"electron 40",
"nodejs",
"typescript",
"vitest",
"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 dev -o",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"web:dev": "npm run build",
"web:prod": "npm run build -- -c production",
"electron": "electron",
"electron:serve-tsc": "tsc -p tsconfig.serve.json",
"electron:serve-tsc:watch": "tsc -p tsconfig.serve.json --watch --preserveWatchOutput",
"electron:start": "electron . --serve",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npm-run-all -p electron:serve-tsc:watch electron:start",
"electron:local": "npm run web:dev && electron .",
"electron:build": "npm run web:prod && electron-builder build --publish=never",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run web:prod && playwright test -c e2e/playwright.config.ts e2e/",
"e2e:show-trace": "playwright show-trace e2e/tracing/trace.zip",
"lint": "ng lint",
"postversion": "node -e \"const fs=require('fs');const app=JSON.parse(fs.readFileSync('./app/package.json'));app.version=require('./package.json').version;fs.writeFileSync('./app/package.json',JSON.stringify(app,null,2)+'\\n');\" && git add app/package.json"
},
"dependencies": {
"@angular/common": "21.2.0",
"@angular/compiler": "21.2.0",
"@angular/core": "21.2.0",
"@angular/forms": "21.2.0",
"@angular/language-service": "21.2.0",
"@angular/platform-browser": "21.2.0",
"@angular/platform-browser-dynamic": "21.2.0",
"@angular/router": "21.2.0",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.1"
},
"devDependencies": {
"@angular-eslint/builder": "21.2.0",
"@angular-eslint/eslint-plugin": "21.2.0",
"@angular-eslint/eslint-plugin-template": "21.2.0",
"@angular-eslint/schematics": "21.2.0",
"@angular-eslint/template-parser": "21.2.0",
"@angular/build": "21.2.0",
"@angular/cli": "21.2.0",
"@angular/compiler-cli": "21.2.0",
"@ngx-translate/core": "17.0.0",
"@ngx-translate/http-loader": "17.0.0",
"@playwright/test": "1.58.2",
"@types/node": "24.10.15",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vitest/browser-playwright": "4.0.18",
"@vitest/coverage-v8": "4.0.18",
"@vitest/ui": "4.0.18",
"electron": "40.6.1",
"electron-builder": "26.8.1",
"electron-debug": "4.1.0",
"electron-reloader": "1.2.3",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "62.7.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jsdom": "28.1.0",
"npm-run-all": "4.1.5",
"playwright": "1.58.2",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vitest": "4.0.18",
"wait-on": "9.0.4",
"webdriver-manager": "13.0.2"
},
"engines": {
"node": ">= 22.12.0 || >= 24.0.0",
"typescript": ">= 5.8.0 < 5.9.0"
},
"browserslist": [
"chrome 140"
]
}