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
78 lines (78 loc) · 2.35 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.35 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
70
71
72
73
74
75
76
77
78
{
"name": "watch-list",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:electron": "ng serve --configuration electron",
"build": "ng build --configuration=production,web",
"build:electron": "ng build --configuration=production,electron",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"electron": "electron .",
"electron:dev": "tsc -p electron/tsconfig.json && concurrently -k \"bun start:electron\" \"wait-on http://localhost:4200 && electron ./dist-electron/main.js\"",
"electron:build": "bun run build:electron && tsc -p electron/tsconfig.json && electron-builder",
"lint": "ng lint"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"main": "dist-electron/main.js",
"description": "Watch List - Track your movies and series",
"author": "watch-list <101021254+CodeWithMa@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "https://github.com/CodeWithMa/watch-list.git"
},
"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",
"@types/node": "^22.0.0",
"concurrently": "^9.0.0",
"electron": "^32.0.0",
"electron-builder": "^25.0.0",
"wait-on": "^8.0.0",
"@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"
}
}