build(api): refresh bun config

This commit is contained in:
William Valentin
2025-10-17 09:54:14 -07:00
parent aec89c6f5a
commit 37411bc890
5 changed files with 5403 additions and 951 deletions

View File

@@ -4,27 +4,26 @@
"description": "A simple application to stream audio files stored in S3.",
"main": "dist/app.js",
"scripts": {
"start": "bun dist/app.js",
"start:dev": "ts-node src/app.ts",
"build": "tsc -p tsconfig.json",
"test": "jest"
"start": "bun run dist/app.js",
"start:dev": "bun run --watch src/app.ts",
"build": "bun run build:tsc",
"build:tsc": "tsc -p tsconfig.json",
"test": "bun test"
},
"dependencies": {
"aws-sdk": "^2.1234.0",
"express": "^4.17.1",
"morgan": "^1.10.0"
"@aws-sdk/client-s3": "^3.879.0",
"express": "^4.18.2",
"pino": "^9.9.0",
"pino-http": "^10.5.0"
},
"devDependencies": {
"@types/aws-sdk": "^2.7.0",
"@types/express": "^4.17.0",
"@types/jest": "^26.0.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"jest": "^26.6.0",
"ts-jest": "^26.5.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=12.0.0"
"node": ">=18.0.0"
}
}