-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.76 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.76 KB
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
{
"name": "unstream-play",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"axios": "^0.26.1",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsmediatags": "^3.9.7",
"jsonwebtoken": "^8.5.1",
"socket.io": "^4.4.1",
"source-map-support": "^0.5.19",
"stream-split": "^1.1.0"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jsmediatags": "^3.9.3",
"@types/jsonwebtoken": "^8.5.9",
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"concurrently": "^6.2.0",
"eslint": "^7.20.0",
"nodemon": "^2.0.12",
"ts-node-dev": "^1.1.1",
"typescript": "^4.1.3"
},
"scripts": {
"dev": "concurrently --raw --kill-others \"yarn watch\" \"yarn watch-run\"",
"test-import": "cd data.local/import && yt-dlp -x \"https://www.youtube.com/watch?v=H8s_cQMuu3Q\" \"https://www.youtube.com/watch?v=dpPm_399xxU\" \"https://www.youtube.com/watch?v=20IY9cE_usM\" \"https://www.youtube.com/watch?v=IJJo3AUF5e8\" \"https://www.youtube.com/watch?v=GNvAb2X7Its\" \"https://www.youtube.com/watch?v=oPwGO2FjGec\"",
"watch": "tsc --watch --preserveWatchOutput --noEmitOnError",
"build": "tsc --preserveWatchOutput",
"watch-run": "nodemon --watch build --delay 1 -x \"node -r source-map-support/register --preserve-symlinks --inspect\" ./build/app/app.js",
"start": "node -r source-map-support/register --preserve-symlinks ./build/app/app.js",
"get-ucpem": "curl -L https://github.com/bt7s7k7/UCPeM/releases/latest/download/ucpem.js -o node_modules/.bin/ucpem",
"lint": "eslint ."
}
}