mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 18:35:54 +00:00
24 lines
790 B
JSON
24 lines
790 B
JSON
{
|
|
"name": "@uppy-example/python-xhr",
|
|
"dependencies": {
|
|
"@babel/core": "^7.4.4",
|
|
"@uppy/core": "file:../../packages/@uppy/core",
|
|
"@uppy/webcam": "file:../../packages/@uppy/webcam",
|
|
"@uppy/dashboard": "file:../../packages/@uppy/dashboard",
|
|
"@uppy/xhr-upload": "file:../../packages/@uppy/xhr-upload",
|
|
"babelify": "^10.0.0",
|
|
"budo": "^11.3.2",
|
|
"cookie-parser": "^1.4.3",
|
|
"cors": "^2.8.4",
|
|
"formidable": "^1.2.1",
|
|
"npm-run-all": "^4.1.3",
|
|
"rimraf": "^2.6.2"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"copy": "cp ../../packages/uppy/dist/uppy.min.css .",
|
|
"start": "npm-run-all --serial copy --parallel start:*",
|
|
"start:client": "budo main.js:bundle.js -- -t babelify",
|
|
"start:server": "mkdir -p uploads && python server.py"
|
|
}
|
|
}
|