forked from CodeWithMa/watch-list
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.76 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
{
"name": "watch-list",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:tauri": "ng serve --configuration tauri",
"build": "ng build --configuration=production,web",
"build:tauri": "ng build --configuration=production,tauri",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"lint": "ng lint"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"packageManager": "bun@1.3.12",
"dependencies": {
"@angular/common": "^22.0.8",
"@angular/compiler": "^22.0.8",
"@angular/core": "^22.0.8",
"@angular/forms": "^22.0.8",
"@angular/platform-browser": "^22.0.8",
"@angular/router": "^22.0.8",
"@angular/service-worker": "^22.0.8",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zod": "^4.4.3"
},
"devDependencies": {
"@angular-eslint/builder": "^22.1.0",
"@angular/build": "^22.0.8",
"@angular/cli": "^22.0.8",
"@angular/compiler-cli": "^22.0.8",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.0",
"@eslint/js": "^10.0.1",
"@j178/prek": "^0.4.10",
"@tailwindcss/postcss": "^4.3.3",
"@tauri-apps/cli": "^2.11.4",
"@vitest/coverage-v8": "^4.1.10",
"angular-eslint": "^22.1.0",
"eslint": "^10.7.0",
"fake-indexeddb": "^6.2.4",
"jsdom": "^27.4.0",
"knip": "^6.29.0",
"postcss": "^8.5.22",
"prettier": "^3.9.6",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.10"
}
}