initial commit

This commit is contained in:
Franz Heinzmann (Frando) 2021-06-07 16:22:13 +02:00
commit 0024f44c80
34 changed files with 1991 additions and 0 deletions

37
backend/package.json Normal file
View file

@ -0,0 +1,37 @@
{
"name": "streamer",
"version": "1.0.0",
"main": "server.mjs",
"type": "module",
"license": "MIT",
"bin": "bin.mjs",
"scripts": {
"start": "node bin.mjs"
},
"dependencies": {
"baresip-wrapper": "^1.0.10",
"debug": "^4.3.1",
"fastify": "^3.15.1",
"fastify-cors": "^6.0.1",
"fastify-sse-v2": "^2.0.4",
"fastify-static": "^4.0.1",
"is-online": "^9.0.0",
"minimist": "^1.2.5",
"split2": "^3.2.2",
"streamx": "^2.10.3"
},
"pkg": {
"assets": [
"etc/**",
"frontend/dist/**"
],
"targets": [
"node14-linux-arm64",
"node14-linux-x64"
],
"outputPath": "dist"
},
"devDependencies": {
"caxa": "^1.0.0"
}
}