forked from rusnakdima/AllInOneToolkitV2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.36 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.36 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": "allinonetoolkitv2",
"version": "0.8.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --configuration production",
"watch": "ng build --watch --configuration development",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug",
"tauri:build:fast": "tauri build --no-bundle",
"tauri:build:android": "tauri android build",
"build:frontend:check": "ng build --configuration production --output-hashing none",
"build:optimized": "bun run build:prod && bun run tauri:build",
"build:android:optimized": "bun run build:prod && bun run tauri:build:android",
"build:smart": "./scripts/build-optimized.sh build desktop release",
"build:smart:debug": "./scripts/build-optimized.sh build desktop debug",
"build:smart:android": "./scripts/build-optimized.sh build android release",
"build:clean": "./scripts/build-optimized.sh clean"
},
"private": true,
"dependencies": {
"@angular/animations": "^20.3.15",
"@angular/cdk": "^20.2.14",
"@angular/common": "^20.3.15",
"@angular/compiler": "^20.3.15",
"@angular/core": "^20.3.15",
"@angular/forms": "^20.3.15",
"@angular/material": "^20.2.14",
"@angular/platform-browser": "^20.3.15",
"@angular/platform-browser-dynamic": "^20.3.15",
"@angular/router": "^20.3.15",
"@tauri-apps/api": "^2.9.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-shell": "^2.3.3",
"chart.js": "^4.5.1",
"crypto-js": "^4.2.0",
"ngx-pagination": "^6.0.3",
"rxjs": "~7.8.2",
"ts-md5": "^1.3.1",
"tslib": "^2.8.1",
"uuid": "^10.0.0",
"zone.js": "^0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.3.13",
"@angular/cli": "^20.3.13",
"@angular/compiler-cli": "^20.3.15",
"@tauri-apps/cli": "^2.9.5",
"@types/crypto-js": "^4.2.2",
"@types/jasmine": "~5.1.13",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.22",
"flowbite": "^2.5.2",
"jasmine-core": "~5.1.2",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"postcss": "^8.5.6",
"prettier": "3.4.2",
"tailwindcss": "^3.4.18",
"typescript": "~5.8.3"
}
}