Martin Dimitrov 804d5b678d
All checks were successful
Build and push image for doorman-homeassistant / docker (push) Successful in 30s
Build and push Doorman UI / API / docker (push) Successful in 1m24s
Build and push image for doorman-homeassistant / deploy-gitainer (push) Successful in 24s
change to typescript for client
2024-12-10 19:04:15 -08:00

31 lines
902 B
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": "^3.0.0",
"@twilio/runtime-handler": "1.3.0",
"node-fetch": "2",
"twilio": "^3.56"
},
"devDependencies": {
"@types/bun": "latest",
"concurrently": "^9.1.0",
"twilio-run": "^3.5.4"
},
"engines": {
"node": "18"
},
"type": "commonjs",
"peerDependencies": {
"typescript": "^5.0.0"
}
}