-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.87 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
{
"name": "twitchcompilationgenerator",
"version": "1.0.0",
"description": "A simple script to make a twitch compilation video without any video editing software.",
"main": "index.js",
"scripts": {
"start": "run-s main:build main:start",
"gameSearch": "run-s gameSearch:build gameSearch:start",
"main:build": "npx tsc index.ts",
"main:start": "node index.js",
"gui": "run-s server:build server:start",
"server:build": "npx tsc server.ts",
"server:start": "node server.js",
"gameSearch:build": "npx tsc gameSearch.ts",
"gameSearch:start": "node gameSearch.js",
"dev": "run-s gui:dev server",
"gui:dev": "npm run --prefix gui serve",
"eslint": "npx eslint . --ext .ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iErcann/TwitchCompilationGenerator.git"
},
"author": "iercan",
"license": "MIT",
"bugs": {
"url": "https://github.com/iErcann/TwitchCompilationGenerator/issues"
},
"homepage": "https://github.com/iErcann/TwitchCompilationGenerator#readme",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.20",
"@types/cli-progress": "^3.9.0",
"@types/node": "^14.14.43",
"axios": "^0.21.1",
"cli-progress": "^3.9.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ffmpeg-static": "^4.3.0",
"ffprobe-static": "^3.0.0",
"fluent-ffmpeg": "^2.1.2",
"fs": "0.0.1-security",
"https": "^1.0.0",
"nodemon": "^2.0.7",
"path": "^0.12.7",
"rimraf": "^3.0.2",
"ws": "^7.4.5"
},
"devDependencies": {
"@types/express": "^4.17.11",
"@types/rimraf": "^3.0.0",
"@types/ws": "^7.4.2",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"eslint": "^7.21.0",
"npm-run-all": "^4.1.5",
"tslint": "^5.12.1",
"typescript": "^3.9.9"
}
}