add new service + fix docs links

This commit is contained in:
Emily
2024-06-09 19:00:44 +02:00
parent 2720222048
commit 127be91506
25 changed files with 2241 additions and 160 deletions

29
producer/package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"dependencies": {
"cors": "^2.8.5",
"express": "^4.19.2",
"ioredis": "^5.4.1",
"redis": "^4.6.14",
"remove": "^0.1.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"glob": "^10.4.1",
"typescript": "^5.4.5"
},
"name": "litlyx-producer",
"version": "1.0.0",
"main": "dist/index.js",
"scripts": {
"dev": "node scripts/start_dev.js",
"compile": "tsc",
"build": "ts-node scripts/build.ts",
"build_all": "scripts/build_all.bat"
},
"keywords": [],
"author": "Emily",
"license": "MIT",
"description": "Producer for Litlyx - Saves events to redis stream."
}