forked from Sooyoung98/313-Add-Favorites
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 3.25 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
{
"name": "video-hub-app-3",
"productName": "Video Hub App 3",
"version": "3.2.0",
"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": ">=v14"
},
"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": "1.4.1",
"@ngx-translate/core": "14.0.0",
"an-qrcode": "1.0.7",
"async": "3.2.4",
"body-parser": "1.20.1",
"chokidar": "3.5.3",
"electron-window-state": "5.0.3",
"express": "4.18.2",
"fdir": "5.3.0",
"ffmpeg-static": "5.1.0",
"fuse.js": "6.6.2",
"ip": "1.1.8",
"natural-orderby": "3.0.1",
"ngx-virtual-scroller": "4.0.3",
"path": "0.12.7",
"trash": "7.2.0",
"ws": "8.11.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "15.0.2",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular/animations": "15.0.1",
"@angular/cdk": "15.0.0",
"@angular/cli": "15.0.2",
"@angular/common": "15.0.1",
"@angular/compiler": "15.0.1",
"@angular/compiler-cli": "15.0.1",
"@angular/core": "15.0.1",
"@angular/forms": "15.0.1",
"@angular/material": "15.0.0",
"@angular/platform-browser": "15.0.1",
"@angular/platform-browser-dynamic": "15.0.1",
"@angular/router": "15.0.1",
"@types/node": "18.11.9",
"@typescript-eslint/eslint-plugin": "5.45.0",
"@typescript-eslint/parser": "5.45.0",
"electron": "22.0.0",
"electron-builder": "^22.10.3",
"electron-reload": "1.5.0",
"npm-run-all": "4.1.5",
"rxjs": "7.5.7",
"stylelint": "14.15.0",
"stylelint-config-recommended-scss": "8.0.0",
"stylelint-order": "5.0.0",
"stylelint-scss": "4.3.0",
"ts-node": "10.9.1",
"typescript": "4.8.2",
"wait-on": "6.0.1",
"zone.js": "0.12.0"
},
"optionalDependencies": {
"dmg-license": "1.0.11"
},
"browserslist": [
"chrome 98"
]
}