Merge pull request #944 from ethereum/file-exlorer
add support for large directories to file-explorer
Showing
... | @@ -9,6 +9,7 @@ | ... | @@ -9,6 +9,7 @@ |
"babel-plugin-transform-object-assign": "^6.22.0", | "babel-plugin-transform-object-assign": "^6.22.0", | ||
"babel-plugin-yo-yoify": "^0.3.3", | "babel-plugin-yo-yoify": "^0.3.3", | ||
"babel-polyfill": "^6.22.0", | "babel-polyfill": "^6.22.0", | ||
"babel-preset-env": "^1.6.1", | |||
"babel-preset-es2015": "^6.24.0", | "babel-preset-es2015": "^6.24.0", | ||
"babel-preset-stage-0": "^6.24.1", | "babel-preset-stage-0": "^6.24.1", | ||
"babelify": "^7.3.0", | "babelify": "^7.3.0", | ||
... | @@ -44,7 +45,7 @@ | ... | @@ -44,7 +45,7 @@ |
"remix-debugger": "latest", | "remix-debugger": "latest", | ||
"remix-lib": "latest", | "remix-lib": "latest", | ||
"remix-solidity": "latest", | "remix-solidity": "latest", | ||
"remixd": "^0.1.2", | "remixd": "git+https://github.com/ethereum/remixd.git", | ||
"rimraf": "^2.6.1", | "rimraf": "^2.6.1", | ||
"selenium-standalone": "^6.0.1", | "selenium-standalone": "^6.0.1", | ||
"solc": "https://github.com/ethereum/solc-js", | "solc": "https://github.com/ethereum/solc-js", | ||
... | @@ -155,12 +156,12 @@ | ... | @@ -155,12 +156,12 @@ |
"nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari", | "nightwatch_remote_safari": "nightwatch --config nightwatch.js --env safari", | ||
"onchange": "onchange build/app.js -- npm-run-all lint", | "onchange": "onchange build/app.js -- npm-run-all lint", | ||
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc build", | "prepublish": "mkdirp build; npm-run-all -ls downloadsolc build", | ||
"remixd": "remixd -S ./contracts", | "remixd": "node ./node_modules/remixd/src/main.js -s ./contracts", | ||
"selenium": "execr --silent selenium-standalone start", | "selenium": "execr --silent selenium-standalone start", | ||
"selenium-install": "selenium-standalone install", | "selenium-install": "selenium-standalone install", | ||
"serve": "execr --silent http-server .", | "serve": "execr --silent http-server .", | ||
"sourcemap": "exorcist --root ../ build/app.js.map > build/app.js", | "sourcemap": "exorcist --root ../ build/app.js.map > build/app.js", | ||
"start": "npm-run-all -lpr serve watch onchange", | "start": "npm-run-all -lpr serve watch onchange remixd", | ||
"test": "npm run csslint; standard && node test/index.js", | "test": "npm run csslint; standard && node test/index.js", | ||
"test-browser": "npm-run-all -lpr selenium downloadsolc make-mock-compiler serve browsertest", | "test-browser": "npm-run-all -lpr selenium downloadsolc make-mock-compiler serve browsertest", | ||
"watch": "watchify src/index.js -dv -p browserify-reload -o build/app.js" | "watch": "watchify src/index.js -dv -p browserify-reload -o build/app.js" | ||
... | ... |
Please
register
or
sign in
to comment