mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
exact copy of #6175 - I will point the uppy deps upgrade pr to this PR's branch - no other changes needed in this branch as #6175 was reviewed and all the comments were resolved this should be the order of merge : 1. #6300 2. uppy deps upgrade ( yet to be raised ) 3. merge this to main 4. merge biome changes #6244 @mifi let me know if you think otherwise. --------- Co-authored-by: Mikael Finstad <finstaden@gmail.com>
33 lines
803 B
JSON
33 lines
803 B
JSON
{
|
|
"name": "example-aws-companion",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@uppy/aws-s3": "workspace:*",
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/google-drive": "workspace:*",
|
|
"@uppy/webcam": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@uppy/companion": "workspace:*",
|
|
"body-parser": "^1.20.4",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.0.1",
|
|
"express": "^5.2.1",
|
|
"express-session": "^1.17.3",
|
|
"npm-run-all": "^4.1.5",
|
|
"vite": "^7.1.11"
|
|
},
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=16.15.0"
|
|
},
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"start": "npm-run-all --parallel start:client start:server",
|
|
"start:client": "vite",
|
|
"start:server": "node server.cjs"
|
|
}
|
|
}
|