uppy/examples/aws-nodejs/package.json
Mikael Finstad 489d76717c
Upgrade to express 5 (#6175)
closes #6157

https://expressjs.com/en/guide/migrating-5.html

---------

Co-authored-by: Prakash <qxprakash@gmail.com>
2026-05-20 21:06:46 +05:30

20 lines
516 B
JSON

{
"name": "example-aws-nodejs",
"version": "1.0.0",
"description": "Uppy for AWS S3 with a custom Node.js backend for signing URLs",
"main": "index.js",
"scripts": {
"dev": "node --watch index.js",
"start": "node index.js"
},
"private": true,
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "^3.338.0",
"@aws-sdk/client-sts": "^3.338.0",
"@aws-sdk/s3-request-presigner": "^3.338.0",
"body-parser": "^1.20.4",
"dotenv": "^16.0.0",
"express": "^5.2.1"
}
}