uppy/examples/custom-provider/package.json
Antoine du Hamel 01d7ea13e9
meta: use Yarn v3 instead of npm (#3237)
* meta: use Yarn v3 instead of npm

* Update CONTRIBUTING.md to fix linter errors

* remove remaining npm commands

* Update deps
2021-10-20 15:16:59 +02:00

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"
}
}