mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
- Remove outdated examples - Rename folders for consistency - Remove lots of unused deps in angular example. - Rename `name` inside `package.json`'s from `@uppy-example/*` to `example-*`. **Before** ``` ├── angular-example ├── aws-companion ├── aws-nodejs ├── aws-php ├── bundled ├── cdn-example ├── custom-provider ├── digitalocean-spaces ├── multiple-instances ├── node-xhr ├── php-xhr ├── python-xhr ├── react ├── react-native-expo ├── redux ├── sveltekit ├── transloadit ├── transloadit-markdown-bin ├── uppy-with-companion ├── vue3 └── xhr-bundle ``` **After** ``` examples ├── angular ├── aws-companion ├── aws-nodejs ├── aws-php ├── cdn ├── companion ├── companion-custom-provider ├── companion-digitalocean-spaces ├── react ├── react-native-expo ├── redux ├── sveltekit ├── transloadit ├── vue ├── xhr-bundle ├── xhr-node ├── xhr-php └── xhr-python ```
20 lines
517 B
JSON
20 lines
517 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.3",
|
|
"dotenv": "^16.0.0",
|
|
"express": "^4.19.2"
|
|
}
|
|
}
|