-
-
Notifications
You must be signed in to change notification settings - Fork 179
/
package.json
110 lines (110 loc) · 3.38 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "video-hub-app-3",
"productName": "Video Hub App 3",
"version": "3.2.1",
"description": "Video Hub App 3 - browse, search, preview your videos",
"homepage": "http://www.videohubapp.com",
"repository": {
"type": "git",
"url": "https://github.com/whyboris/Video-Hub-App.git"
},
"author": {
"name": "Boris Yakubchik",
"email": "[email protected]"
},
"contributors": [
{
"name": "Cal Martin",
"url": "https://github.com/cal2195"
}
],
"keywords": [
"video"
],
"main": "main.js",
"license": "MIT",
"engines": {
"node": ">=v18"
},
"scripts": {
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:prod": "npm run build -- -c production",
"buildsize": "sh ./bin/buildSizeCheck.sh",
"check": "npm run check:tsc && npm run check:lint",
"check:lint": "tslint --project ./tsconfig.json && tslint --project ./tsconfig-serve.json && tslint --project ./tsconfig.worker.json",
"check:tsc": "tsc --project ./tsconfig.json --noEmit && tsc --project ./tsconfig-serve.json --noEmit && tsc --project ./tsconfig.worker.json --noEmit",
"hasRemote": "sh ./bin/hasRemoteCheck.sh",
"electron": "npm run hasRemote && npm run build:prod && electron-builder build && npm run buildsize",
"electron:serve": "wait-on tcp:4200 && npm run electron:serve-tsc && npx electron . --serve",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"ng": "ng",
"lint": "ng lint",
"ng:serve": "ng serve",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@ffprobe-installer/ffprobe": "2.1.2",
"@iharbeck/ngx-virtual-scroller": "17.0.2",
"@ngx-translate/core": "15.0.0",
"an-qrcode": "1.0.7",
"async": "3.2.6",
"body-parser": "1.20.3",
"chokidar": "4.0.1",
"electron-window-state": "5.0.3",
"express": "4.21.1",
"fdir": "6.4.2",
"ffmpeg-static": "5.2.0",
"fuse.js": "7.0.0",
"ip": "2.0.1",
"natural-orderby": "4.0.0",
"path": "0.12.7",
"trash": "7.2.0",
"tslib": "2.8.0",
"ws": "8.18.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "18.2.9",
"@angular-eslint/builder": "18.4.0",
"@angular-eslint/schematics": "18.4.0",
"@angular/animations": "18.2.8",
"@angular/cdk": "18.2.9",
"@angular/cli": "18.2.9",
"@angular/common": "18.2.8",
"@angular/compiler": "18.2.8",
"@angular/compiler-cli": "18.2.8",
"@angular/core": "18.2.8",
"@angular/forms": "18.2.8",
"@angular/material": "18.2.9",
"@angular/platform-browser": "18.2.8",
"@angular/platform-browser-dynamic": "18.2.8",
"@angular/router": "18.2.8",
"@tweenjs/tween.js": "25.0.0",
"@types/node": "22.7.8",
"@typescript-eslint/eslint-plugin": "8.11.0",
"@typescript-eslint/parser": "8.11.0",
"electron": "33.0.2",
"electron-builder": "25.1.8",
"electron-reload": "1.5.0",
"npm-run-all": "4.1.5",
"rxjs": "7.8.1",
"stylelint": "16.10.0",
"stylelint-config-recommended-scss": "14.1.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "6.8.1",
"ts-node": "10.9.2",
"typescript": "5.4.5",
"wait-on": "8.0.1",
"zone.js": "0.14.10"
},
"overrides": {
"minimatch": "5.1.2",
"glob": "8.1.0"
},
"optionalDependencies": {
"dmg-license": "1.0.11"
},
"browserslist": [
"chrome 98"
]
}