Martin Dimitrov 7a2ebb92be
All checks were successful
Build and push image for doorman-homeassistant / docker (push) Successful in 39s
Build and push image for doorman-homeassistant / deploy-gitainer (push) Successful in 3s
Build and push Doorman UI / API / docker (push) Successful in 2m3s
add fail fast to the common doorman lambda
2025-03-04 11:35:54 -08:00

36 lines
1.0 KiB
JSON

{
"name": "doorman-client",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch-build": "bun run --watch src/index.ts",
"start-twilio": "twilio-run --live --port 4500",
"start": "concurrently \"bun run watch-build\" \"bun run start-twilio\"",
"build": "bun run src/index.ts",
"deploy": "twilio-run deploy --load-system-env --env .env.example --service-name buzzer --environment=prod --override-existing-project"
},
"dependencies": {
"@twilio-labs/serverless-runtime-types": "^4.0.1",
"@twilio/runtime-handler": "1.3.0",
"node-fetch": "^2.7.0",
"prom-client": "^15.1.3",
"prometheus-remote-write": "^0.5.0",
"promise.timeout": "^1.2.0",
"twilio": "^3.84.1",
"winston": "^3.17.0",
"winston-loki": "^6.1.3"
},
"devDependencies": {
"@types/bun": "latest",
"concurrently": "^9.1.0",
"twilio-run": "^3.5.4"
},
"engines": {
"node": "18"
},
"type": "commonjs",
"peerDependencies": {
"typescript": "^5.2.2"
}
}