-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.66 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
{
"name": "devbox",
"version": "0.1.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"test:watch": "ng test --watch",
"test:coverage": "ng test --coverage",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint . --fix && prettier --write .",
"format": "prettier --write .",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"bindings": "cargo run --manifest-path src-tauri/Cargo.toml --bin export-bindings"
},
"private": true,
"dependencies": {
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/router": "^22.0.0",
"@fontsource/inter": "^5.3.0",
"@fontsource/jetbrains-mono": "^5.3.0",
"@jsverse/transloco": "^8.4.0",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-opener": "^2.5.4",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-store": "^2.4.4",
"@tauri-apps/plugin-updater": "^2.10.1",
"highlight.js": "^11.11.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@eslint/js": "9.39.5",
"@tauri-apps/cli": "^2",
"@vitest/coverage-v8": "^4.1.10",
"angular-eslint": "22.1.0",
"eslint": "9.39.5",
"jsdom": "^29.1.1",
"prettier": "3.9.6",
"typescript": "~6.0.3",
"typescript-eslint": "8.65.0",
"vitest": "^4.1.10"
}
}