{ "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 dist/app.js", "start:dev": "ts-node src/app.ts", "build": "tsc -p tsconfig.json", "test": "jest" }, "dependencies": { "aws-sdk": "^2.1234.0", "express": "^4.17.1", "morgan": "^1.10.0" }, "devDependencies": { "@types/aws-sdk": "^2.7.0", "@types/express": "^4.17.0", "@types/jest": "^26.0.0", "@types/node": "^20.11.0", "jest": "^26.6.0", "ts-jest": "^26.5.0", "ts-node": "^9.1.1", "typescript": "^4.1.3" }, "engines": { "node": ">=12.0.0" } }