uppy/examples/aws-php/package.json
Raúl Ibáñez 3f07d79de6
Add example for Uppy with S3 and a Node.js server (#4129)
Co-authored-by: Merlijn Vos <merlijn@soverin.net>
Co-authored-by: Antoine du Hamel <duhamelantoine1995@gmail.com>
2022-10-17 16:43:00 -03:00

19 lines
458 B
JSON

{
"name": "@uppy-example/aws-php",
"version": "0.0.0",
"dependencies": {
"@uppy/aws-s3": "workspace:*",
"@uppy/core": "workspace:*",
"@uppy/dashboard": "workspace:*",
"uppy": "workspace:*"
},
"devDependencies": {
"esbuild": "^0.15.1"
},
"private": true,
"type": "module",
"scripts": {
"start": "php -S localhost:8080 serve.php",
"outputBundle": "esbuild --format=esm --sourcemap=inline --bundle ./main.js"
}
}