-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
69 lines (69 loc) · 2.22 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
{
"name": "angular-tauri",
"version": "1.1.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": "16.2.12",
"@angular/compiler": "16.2.12",
"@angular/core": "16.2.12",
"@angular/forms": "16.2.12",
"@angular/language-service": "16.2.12",
"@angular/platform-browser": "16.2.12",
"@angular/platform-browser-dynamic": "16.2.12",
"@angular/router": "16.2.12",
"@tauri-apps/api": "1.2.0",
"rxjs": "7.8.0",
"tslib": "^2.5.0",
"zone.js": "~0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "16.2.10",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/cli": "16.2.10",
"@angular/compiler-cli": "16.2.12",
"@ngx-translate/core": "14.0.0",
"@ngx-translate/http-loader": "7.0.0",
"@tauri-apps/cli": "1.2.3",
"@types/jasmine": "4.3.1",
"@types/jasminewd2": "2.0.10",
"@types/node": "18.14.2",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"conventional-changelog-cli": "2.2.2",
"eslint": "^8.39.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jsdoc": "39.9.1",
"eslint-plugin-prefer-arrow": "1.2.3",
"jasmine-core": "4.5.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.4.1",
"karma-chrome-launcher": "3.1.1",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"npm-run-all": "4.1.5",
"ts-node": "10.9.1",
"typescript": "~4.9.5",
"wait-on": "7.0.1",
"webdriver-manager": "12.1.8"
}
}