-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.11 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.11 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
{
"name": "angular-tauri",
"version": "2.0.0",
"scripts": {
"ng": "ng",
"start": "npm run tauri:serve",
"web:serve": "ng serve -o",
"web:build": "ng build --base-href ./",
"web:dev": "npm run web:build",
"web:prod": "npm run web:build -- -c production",
"tauri": "tauri",
"tauri:serve": "tauri dev",
"tauri:bundle": "tauri build",
"test": "ng test --watch=false",
"test:watch": "ng test",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/common": "21.0.3",
"@angular/compiler": "21.0.3",
"@angular/core": "21.0.3",
"@angular/forms": "21.0.3",
"@angular/language-service": "21.0.3",
"@angular/platform-browser": "21.0.3",
"@angular/platform-browser-dynamic": "21.0.3",
"@angular/router": "21.0.3",
"@tauri-apps/api": "2.9.1",
"rxjs": "7.8.2",
"tslib": "2.8.1",
"zone.js": "0.16.0"
},
"devDependencies": {
"@angular-eslint/builder": "21.0.1",
"@angular-eslint/eslint-plugin": "21.0.1",
"@angular-eslint/eslint-plugin-template": "21.0.1",
"@angular-eslint/schematics": "21.0.1",
"@angular-eslint/template-parser": "21.0.1",
"@angular/build": "^21.0.2",
"@angular/cli": "21.0.2",
"@angular/compiler-cli": "21.0.3",
"@ngx-translate/core": "17.0.0",
"@ngx-translate/http-loader": "17.0.0",
"@tauri-apps/cli": "2.9.5",
"@types/node": "24.10.1",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"@vitest/browser-playwright": "4.0.15",
"@vitest/coverage-v8": "4.0.15",
"@vitest/ui": "4.0.15",
"conventional-changelog": "7.1.1",
"eslint": "9.39.1",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsdoc": "61.4.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jsdom": "27.2.0",
"npm-run-all": "4.1.5",
"playwright": "1.57.0",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vitest": "4.0.15",
"wait-on": "9.0.3",
"webdriver-manager": "13.0.2"
},
"engines": {
"node": ">= 22.12.0 || >= 24.0.0"
}
}