Initial commit of akmon project

This commit is contained in:
2026-01-20 08:04:15 +08:00
commit 77a2bab985
1309 changed files with 343305 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
{
"name": "gateway-mqtt-node",
"version": "0.1.0",
"type": "module",
"private": true,
"scripts": {
"dev": "node --env-file=.env --watch src/index.js",
"start": "node --env-file=.env src/index.js",
"worker": "node --env-file=.env --watch src/worker.js",
"start:worker": "node --env-file=.env src/worker.js",
"simulate:webhook": "node --env-file=.env scripts/simulate_webhook.js",
"simulate:downlink": "node --env-file=.env scripts/simulate_downlink.js",
"simulate:chat:downlink": "node --env-file=.env scripts/simulate_chat_downlink.js",
"simulate:ack": "node --env-file=.env scripts/simulate_ack.js"
},
"dependencies": {
"@supabase/supabase-js": "^2.88.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mqtt": "^5.7.0",
"kafkajs": "^2.2.4",
"pino": "^9.3.2",
"redis": "^4.6.14",
"uuid": "^9.0.1"
}
}