mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-29 13:00:18 +00:00
* meta: use Yarn v3 instead of npm * Update CONTRIBUTING.md to fix linter errors * remove remaining npm commands * Update deps
30 lines
823 B
JSON
30 lines
823 B
JSON
{
|
|
"name": "@uppy-example/aws-companion",
|
|
"version": "0.0.0",
|
|
"dependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@uppy/aws-s3": "workspace:*",
|
|
"@uppy/core": "workspace:*",
|
|
"@uppy/dashboard": "workspace:*",
|
|
"@uppy/google-drive": "workspace:*",
|
|
"@uppy/webcam": "workspace:*",
|
|
"babelify": "^10.0.0",
|
|
"body-parser": "^1.18.3",
|
|
"budo": "^11.6.1",
|
|
"cookie-parser": "^1.4.4",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.16.4",
|
|
"express-session": "^1.15.6",
|
|
"npm-run-all": "^4.1.5"
|
|
},
|
|
"private": true,
|
|
"engines": {
|
|
"node": ">=14.14.0"
|
|
},
|
|
"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": "node server.js"
|
|
}
|
|
}
|