uppy/examples/companion-custom-provider/package.json
Prakash d9d44ce5e5
upgrade to express v5 (#6304)
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>
2026-05-21 11:14:23 +08:00

32 lines
825 B
JSON

{
"name": "example-companion-custom-provider",
"version": "0.0.0",
"private": true,
"type": "module",
"dependencies": {
"@uppy/companion-client": "workspace:*",
"@uppy/core": "workspace:*",
"@uppy/dashboard": "workspace:*",
"@uppy/google-drive": "workspace:*",
"@uppy/provider-views": "workspace:*",
"@uppy/tus": "workspace:*",
"preact": "^10.26.10"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@uppy/companion": "workspace:*",
"body-parser": "^1.20.4",
"dotenv": "^16.0.1",
"express": "^5.2.1",
"express-session": "^1.15.6",
"npm-run-all": "^4.1.2",
"vite": "^7.1.11"
},
"scripts": {
"start": "npm-run-all --parallel start:server start:client",
"start:client": "vite",
"start:server": "node server/index.cjs"
}
}