mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
22 lines
593 B
JSON
22 lines
593 B
JSON
{
|
|
"name": "@uppy-example/python-xhr",
|
|
"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": "^3.0.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|