mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-21 09:18:45 +00:00
22 lines
661 B
JSON
22 lines
661 B
JSON
{
|
|
"name": "@uppy-example/xhr-bundle",
|
|
"dependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@uppy/core": "file:../../packages/@uppy/core",
|
|
"@uppy/dashboard": "file:../../packages/@uppy/dashboard",
|
|
"@uppy/xhr-upload": "file:../../packages/@uppy/xhr-upload",
|
|
"babelify": "^10.0.0",
|
|
"budo": "^11.6.1",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.16.4",
|
|
"multer": "^1.4.1",
|
|
"npm-run-all": "^4.1.5"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"css": "cp ../../packages/uppy/dist/uppy.min.css .",
|
|
"start": "run-p start:*",
|
|
"start:client": "npm run css && budo main.js:bundle.js -- -t babelify",
|
|
"start:server": "node serve.js"
|
|
}
|
|
}
|