mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
* meta: use Yarn v3 instead of npm * Update CONTRIBUTING.md to fix linter errors * remove remaining npm commands * Update deps
28 lines
842 B
JSON
28 lines
842 B
JSON
{
|
|
"name": "@uppy-example/custom-provider",
|
|
"version": "0.0.0",
|
|
"dependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@uppy/companion-client": "workspace:*",
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/google-drive": "workspace:*",
|
|
"@uppy/provider-views": "workspace:*",
|
|
"@uppy/tus": "workspace:*",
|
|
"babelify": "^10.0.0",
|
|
"body-parser": "^1.18.2",
|
|
"budo": "^11.3.2",
|
|
"express": "^4.16.2",
|
|
"express-session": "^1.15.6",
|
|
"npm-run-all": "^4.1.2",
|
|
"preact": "^10.5.13",
|
|
"request": "2.88.2"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"copy": "cp ../../packages/uppy/dist/uppy.min.css .",
|
|
"start": "npm-run-all --serial copy --parallel start:*",
|
|
"start:client": "budo client/main.js:bundle.js -- -t babelify",
|
|
"start:server": "node server/index.js"
|
|
}
|
|
}
|