mirror of
https://github.com/Litlyx/litlyx
synced 2025-12-10 15:58:38 +01:00
44 lines
1.2 KiB
JSON
44 lines
1.2 KiB
JSON
{
|
|
"dependencies": {
|
|
"@getbrevo/brevo": "^2.2.0",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.19.2",
|
|
"mongoose": "^8.3.2",
|
|
"nodemailer": "^6.9.13",
|
|
"redis": "^4.6.14",
|
|
"ua-parser-js": "^1.0.37"
|
|
},
|
|
"devDependencies": {
|
|
"@jest/globals": "^29.7.0",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.12.13",
|
|
"@types/nodemailer": "^6.4.15",
|
|
"@types/ua-parser-js": "^0.7.39",
|
|
"glob": "^10.4.1",
|
|
"jest": "^29.7.0",
|
|
"node-ssh": "^13.2.0",
|
|
"ts-jest": "^29.2.5",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"name": "litlyx-queue-broker",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"dev": "node scripts/start_dev.js",
|
|
"compile": "tsc",
|
|
"build": "ts-node scripts/build.ts",
|
|
"create_db": "cd scripts && ts-node create_database.ts",
|
|
"build_all": "npm run compile && npm run build && npm run create_db",
|
|
"docker-build": "docker build -t litlyx-broker -f Dockerfile ../",
|
|
"docker-inspect": "docker run -it litlyx-broker sh",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [],
|
|
"author": "Emily",
|
|
"license": "MIT",
|
|
"description": "Queue broker for Litlyx - Saves events to database."
|
|
}
|