mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
22 lines
525 B
JSON
22 lines
525 B
JSON
{
|
|
"name": "@uppy-example/node-xhr",
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/webcam": "workspace:*",
|
|
"@uppy/xhr-upload": "workspace:*",
|
|
"formidable": "^3.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.3",
|
|
"vite": "^4.0.0"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"start": "npm-run-all --parallel start:server start:client",
|
|
"start:client": "vite",
|
|
"start:server": "node server.js"
|
|
}
|
|
}
|