mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 10:25:33 +00:00
- Deduplicate Vite versions, always use 7.x (except for sveltekit, which
does not allow 7 yet)
- Add missing dev deps
- Fix react-native requested deps versions
- Fix companion @types/node
- Fix "engines" in root package.json
No more yarn warnings 🎉
22 lines
587 B
JSON
22 lines
587 B
JSON
{
|
|
"name": "example-xhr-python",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/webcam": "workspace:*",
|
|
"@uppy/xhr-upload": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.3",
|
|
"vite": "^7.0.6"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"installPythonDeps": "python3 -m pip install -r requirements.txt",
|
|
"start": "npm-run-all --parallel start:server start:client",
|
|
"start:client": "vite",
|
|
"start:server": "mkdir -p uploads && python3 server.py"
|
|
}
|
|
}
|