package.json 441 B

12345678910111213141516171819
  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. "author": "",
  12. "license": "MIT",
  13. "dependencies": {
  14. "aws-sdk": "^2.1038.0",
  15. "body-parser": "^1.20.0",
  16. "dotenv": "^16.0.0",
  17. "express": "^4.18.1"
  18. }
  19. }