29 lines
716 B
JSON
29 lines
716 B
JSON
{
|
|
"name": "s3-audio-streamer",
|
|
"version": "1.0.0",
|
|
"description": "A simple application to stream audio files stored in S3.",
|
|
"main": "dist/app.js",
|
|
"scripts": {
|
|
"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/client-s3": "^3.879.0",
|
|
"express": "^4.18.2",
|
|
"pino": "^9.9.0",
|
|
"pino-http": "^10.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^29.5.12",
|
|
"@types/node": "^20.11.0",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
}
|
|
} |