mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 17:16:00 +00:00
* /examples/dev - added polyfills for easy development in IE11 * @uppy/dashboard - made all svgs not focusable in IE11 * /examples/dev - started sharing serviceWorker registration code * /examples/dev - added polyfills for IE11 to dev bundle
20 lines
451 B
JSON
20 lines
451 B
JSON
{
|
|
"name": "uppy-dev-example",
|
|
"dependencies": {
|
|
"@babel/core": "^7.4.4",
|
|
"aliasify": "^2.1.0",
|
|
"babelify": "^10.0.0",
|
|
"es6-promise": "^4.2.8",
|
|
"watchify": "^3.11.0",
|
|
"whatwg-fetch": "^3.0.0"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"watch:sandbox": "watchify -vd -t [ babelify --cwd ../../ ] -g aliasify index.js -o output/index.js"
|
|
},
|
|
"aliasify": {
|
|
"aliases": {
|
|
"@uppy": "../../packages/@uppy"
|
|
}
|
|
}
|
|
}
|