-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
56 lines (56 loc) · 1.64 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
{
"private": "true",
"name": "youtube-downloader",
"version": "0.2.0",
"description": "A simple website that permits you to download youtube videos",
"main": "server.js",
"author": "TrAyZeN",
"repository": {
"type": "git",
"url": "https://github.com/TrAyZeN/youtube-downloader.git"
},
"license": "MIT",
"keywords": [],
"scripts": {
"start": "node build/server.js",
"build": "yarn --cwd frontend build && tsc --project ./ && mkdir -p ./build/frontend && cp -r ./frontend/public ./build/frontend/public",
"dev": "nodemon server.ts",
"test": "mocha -r ts-node/register 'tests/*.test.ts'",
"lint": "eslint src tests",
"fmt": "eslint src tests --fix"
},
"workspaces": [
"frontend"
],
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"compression": "^1.7.4",
"express": "^4.18.1",
"ffmpeg": "^0.0.4",
"fluent-ffmpeg": "^2.1.2",
"helmet": "^6.0.0",
"ytdl-core": "^4.11.4"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/chai-as-promised": "^7.1.5",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.14",
"@types/express-validator": "^3.0.0",
"@types/fluent-ffmpeg": "^2.1.20",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.23",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"express-validator": "^6.14.2",
"mocha": "^10.0.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"homepage": "https://github.com/TrAyZeN/youtube-downloader"
}