2021-10-11 21:28:12 -04:00
|
|
|
{
|
2022-10-24 18:29:15 -04:00
|
|
|
"type": "module",
|
2021-10-11 21:28:12 -04:00
|
|
|
"devDependencies": {
|
2023-03-27 23:39:34 -04:00
|
|
|
"@types/express": "^4.17.17",
|
2022-01-04 21:56:40 -05:00
|
|
|
"@types/express-ws": "^3.0.1",
|
2023-09-14 12:28:01 -04:00
|
|
|
"@types/fluent-ffmpeg": "^2.1.22",
|
2022-01-04 21:56:40 -05:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2022-10-24 17:50:01 -04:00
|
|
|
"@types/mp4frag": "^0.6.1",
|
2023-09-14 12:28:01 -04:00
|
|
|
"@types/node": "^20.6.0",
|
|
|
|
"@types/node-fetch": "^2.6.5",
|
2023-08-03 23:56:17 -04:00
|
|
|
"@types/ws": "^8.5.5",
|
2023-09-14 12:28:01 -04:00
|
|
|
"tsx": "^3.12.10",
|
|
|
|
"typescript": "^5.2.2"
|
2021-10-11 21:28:12 -04:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-10-24 17:04:49 -04:00
|
|
|
"express": "^4.18.2",
|
2021-10-11 21:28:12 -04:00
|
|
|
"express-ws": "^5.0.2",
|
2021-11-08 20:17:42 -05:00
|
|
|
"fluent-ffmpeg": "^2.1.2",
|
2021-10-11 21:28:12 -04:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-08-03 23:56:17 -04:00
|
|
|
"mp4frag": "^0.6.1",
|
|
|
|
"node-fetch": "^3.3.2",
|
2023-09-14 12:28:01 -04:00
|
|
|
"ws": "^8.14.1"
|
2021-10-11 21:28:12 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-01-04 21:37:07 -05:00
|
|
|
"start": "npm run dev",
|
2023-09-14 12:30:11 -04:00
|
|
|
"dev": "tsx watch --clear-screen=false ./src/server.ts",
|
2022-01-10 01:41:34 -05:00
|
|
|
"build": "tsc",
|
|
|
|
"serve": "node dist/server.js"
|
2021-10-11 21:28:12 -04:00
|
|
|
}
|
|
|
|
}
|