mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 00:55:35 +00:00
* /examples/dev - added drag-drop plugin dev environment * @uppy/drag-drop - moved isDragDropSupported() to @uppy/utils * @uppy/drag-drop - got rid of drag-drop npm library * examples/dev - made compiled files placed in /output instead of /lib * ~/examples/dev - made watchify only watch files once * @uppy/drag-drop - add onPaste * /examples/dev - readded html css override-attempts * @uppy/drag-drop - made whole area clickable, and made it accessible * @uppy/drag-drop - removed excessive outline in firefox * REVERTED last 2 commits
18 lines
392 B
JSON
18 lines
392 B
JSON
{
|
|
"name": "uppy-dev-example",
|
|
"dependencies": {
|
|
"@babel/core": "^7.4.4",
|
|
"aliasify": "^2.1.0",
|
|
"babelify": "^10.0.0",
|
|
"watchify": "^3.11.0"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"watch:sandbox": "watchify -vd -t [ babelify --cwd ../../ ] -g aliasify index.js -o output/index.js"
|
|
},
|
|
"aliasify": {
|
|
"aliases": {
|
|
"@uppy": "../../packages/@uppy"
|
|
}
|
|
}
|
|
}
|