forked from whyboris/Video-Hub-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.46 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
{
"name": "video-hub-app-3",
"version": "3.0.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",
"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",
"electron": "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",
"ng:serve": "ng serve",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "1.0.20",
"@ffprobe-installer/ffprobe": "1.0.12",
"@ngx-translate/core": "12.1.2",
"async": "3.2.0",
"chokidar": "3.4.2",
"electron-window-state": "5.0.3",
"fuse.js": "6.0.0",
"natural-orderby": "^2.0.3",
"ngx-virtual-scroller": "4.0.3",
"path": "0.12.7",
"trash": "6.1.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1000.0",
"@angular/animations": "10.0.9",
"@angular/cdk": "10.1.3",
"@angular/cli": "10.0.0",
"@angular/common": "10.0.0",
"@angular/compiler": "10.0.0",
"@angular/compiler-cli": "10.0.0",
"@angular/core": "10.0.0",
"@angular/forms": "10.0.9",
"@angular/material": "10.1.3",
"@angular/platform-browser": "10.0.0",
"@angular/platform-browser-dynamic": "10.0.0",
"@angular/router": "10.0.0",
"@types/node": "12.12.6",
"codelyzer": "5.2.2",
"electron": "8.3.0",
"electron-builder": "22.7.0",
"electron-reload": "1.5.0",
"node-sass": "4.14.1",
"npm-run-all": "4.1.5",
"rxjs": "6.5.5",
"stylelint": "13.4.0",
"stylelint-config-recommended-scss": "4.2.0",
"stylelint-order": "4.0.0",
"stylelint-scss": "3.17.2",
"translate-json-object": "2.3.6",
"ts-node": "8.10.1",
"tslint": "6.1.2",
"typescript": "3.9.5",
"wait-on": "5.0.0",
"zone.js": "0.10.3"
}
}