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-01-12 00:07:33 -05:00
|
|
|
"@types/express": "^4.17.15",
|
2022-01-04 21:56:40 -05:00
|
|
|
"@types/express-ws": "^3.0.1",
|
|
|
|
"@types/fluent-ffmpeg": "^2.1.20",
|
|
|
|
"@types/js-yaml": "^4.0.5",
|
2022-10-24 17:50:01 -04:00
|
|
|
"@types/mp4frag": "^0.6.1",
|
2023-01-12 00:07:33 -05:00
|
|
|
"@types/node": "^18.11.18",
|
2022-08-23 16:17:02 -04:00
|
|
|
"@types/node-fetch": "^2.6.2",
|
2023-01-12 00:07:33 -05:00
|
|
|
"@types/ws": "^8.5.4",
|
|
|
|
"tsx": "^3.12.2",
|
|
|
|
"typescript": "^4.9.4"
|
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",
|
2022-06-02 22:37:33 -04:00
|
|
|
"mp4frag": "^0.6.0",
|
2023-01-12 00:07:33 -05:00
|
|
|
"node-fetch": "^3.3.0",
|
|
|
|
"ws": "^8.12.0"
|
2021-10-11 21:28:12 -04:00
|
|
|
},
|
|
|
|
"scripts": {
|
2022-01-04 21:37:07 -05:00
|
|
|
"start": "npm run dev",
|
2022-10-24 18:29:15 -04:00
|
|
|
"dev": "tsx watch ./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
|
|
|
}
|
|
|
|
}
|