mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
24 lines
621 B
JSON
24 lines
621 B
JSON
{
|
|
"private": true,
|
|
"name": "custom-provider-example",
|
|
"scripts": {
|
|
"copy": "cp ../../packages/uppy/dist/uppy.min.css .",
|
|
"start:client": "budo client/main.js:bundle.js -- -t babelify -g aliasify",
|
|
"start:server": "node server/index.js",
|
|
"start": "npm-run-all --serial copy --parallel start:*"
|
|
},
|
|
"aliasify": {
|
|
"aliases": {
|
|
"@uppy": "../../packages/@uppy"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"aliasify": "^2.1.0",
|
|
"babelify": "^8.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"
|
|
}
|
|
}
|