package.json 523 B

1234567891011121314151617181920
  1. {
  2. "name": "@uppy-example/aws-nodejs",
  3. "version": "1.0.0",
  4. "description": "Uppy for AWS S3 with a custom Node.js backend for signing URLs",
  5. "main": "index.js",
  6. "scripts": {
  7. "dev": "node --watch index.js",
  8. "start": "node index.js"
  9. },
  10. "private": true,
  11. "license": "MIT",
  12. "dependencies": {
  13. "@aws-sdk/client-s3": "^3.338.0",
  14. "@aws-sdk/client-sts": "^3.338.0",
  15. "@aws-sdk/s3-request-presigner": "^3.338.0",
  16. "body-parser": "^1.20.3",
  17. "dotenv": "^16.0.0",
  18. "express": "^4.19.2"
  19. }
  20. }