This repository has been archived by the owner on May 20, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.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
{
"name": "videoplayer",
"version": "4.0.0",
"description": "A Video Player",
"main": "index.js",
"databaseVersion": 2,
"dependencies": {
"@types/dexie": "^1.3.1",
"better-sqlite3": "^7.4.3",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"dexie": "^3.0.3",
"express": "^4.17.1",
"express-slow-down": "^1.4.0",
"fluent-ffmpeg": "^2.1.2",
"html-webpack-plugin": "^5.3.2",
"jimp": "^0.16.1",
"node-fetch": "^2.6.2",
"progress-stream": "^2.0.0",
"request": "^2.88.2",
"socket.io": "^4.2.0",
"socket.io-client": "^4.2.0",
"unzipper": "^0.10.11",
"yargs": "^16.2.0"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.3",
"@types/chai": "^4.2.21",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-slow-down": "^1.3.1",
"@types/fluent-ffmpeg": "^2.1.18",
"@types/jimp": "^0.2.28",
"@types/mocha": "^8.2.3",
"@types/node": "^14.17.16",
"@types/node-fetch": "^2.5.12",
"@types/progress-stream": "^2.0.2",
"@types/request": "^2.48.7",
"@types/socket.io": "^2.1.13",
"@types/unzipper": "^0.10.4",
"@types/yargs": "^15.0.14",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"eslint": "^7.32.0",
"filemanager-webpack-plugin": "^6.1.7",
"mocha": "^8.3.2",
"ts-loader": "^9.2.5",
"ts-node": "^9.1.1",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0",
"worker-plugin": "^5.0.1"
},
"scripts": {
"eslint": "npx eslint . --fix",
"build": "node build.js",
"prestart": "node build.js --test",
"start": "cd build && node index.js --vd ..\\test\\videos --sync --httpPort 3000 --httpsPort 3001 --disableUpdate",
"pretest": "npm run prestart",
"test": "npx mocha --require ts-node/register test/run.ts --exit --timeout 10000 --no-warnings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AnAppleforlife/VideoPlayer.git"
},
"author": "Leonard Schütt",
"license": "MIT",
"bugs": {
"url": "https://github.com/AnAppleforlife/VideoPlayer/issues"
},
"homepage": "https://github.com/AnAppleforlife/VideoPlayer#readme"
}