Merge pull request #667 from iurimatias/missingDependencies

Missing dev dependencies + watchify cmd fix
pull/7/head
yann300 7 years ago committed by GitHub
commit 7784c86405
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 23
      remix-debugger/package.json

@ -14,17 +14,13 @@
], ],
"main": "./index.js", "main": "./index.js",
"devDependencies": { "devDependencies": {
"csjs-inject": "^1.0.1",
"yo-yo": "^1.2.1",
"yo-yoify": "^3.1.0",
"remix-lib": "latest",
"remix-core": "latest",
"remix-solidity": "latest",
"babel-eslint": "^7.1.1", "babel-eslint": "^7.1.1",
"babel-preset-es2015": "^6.24.0",
"babel-plugin-transform-object-assign": "^6.22.0", "babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babelify": "^7.3.0", "babelify": "^7.3.0",
"browserify": "^13.0.1", "browserify": "^13.0.1",
"browserify-livereload": "^1.0.10",
"csjs-inject": "^1.0.1",
"ethereum-common": "0.0.18", "ethereum-common": "0.0.18",
"ethereumjs-block": "^1.2.2", "ethereumjs-block": "^1.2.2",
"ethereumjs-tx": "^1.1.1", "ethereumjs-tx": "^1.1.1",
@ -33,12 +29,21 @@
"fast-async": "^6.1.2", "fast-async": "^6.1.2",
"http-server": "^0.9.0", "http-server": "^0.9.0",
"nightwatch": "^0.9.5", "nightwatch": "^0.9.5",
"notify-error": "^1.2.0",
"npm-run-all": "^4.1.2",
"onchange": "^3.3.0",
"remix-core": "latest",
"remix-lib": "latest",
"remix-solidity": "latest",
"selenium-standalone": "^6.0.1", "selenium-standalone": "^6.0.1",
"solc": "^0.4.13", "solc": "^0.4.13",
"standard": "^7.0.1", "standard": "^7.0.1",
"standard-reporter": "^1.0.5", "standard-reporter": "^1.0.5",
"tape": "^4.6.0", "tape": "^4.6.0",
"web3": "^0.15.3" "watchify": "^3.9.0",
"web3": "^0.15.3",
"yo-yo": "^1.2.1",
"yo-yoify": "^3.1.0"
}, },
"scripts": { "scripts": {
"build": "mkdirp build; browserify index.js > build/app.js", "build": "mkdirp build; browserify index.js > build/app.js",
@ -61,7 +66,7 @@
"test-browser": "npm-run-all -lpr selenium serve waittest", "test-browser": "npm-run-all -lpr selenium serve waittest",
"waittest": "sleep 5 && npm run nightwatch_local", "waittest": "sleep 5 && npm run nightwatch_local",
"warning_message": "echo 'DO NOT DO THIS IF eth/geth STORES PRIVATE KEYS!! External system might be able to access your node through the RPC server.\n\n';", "warning_message": "echo 'DO NOT DO THIS IF eth/geth STORES PRIVATE KEYS!! External system might be able to access your node through the RPC server.\n\n';",
"watch": "mkdirp build; watchify src/index.js -p [ browserify-livereload --host 127.0.0.1 --port 1337 ] -dv -o build/app.js" "watch": "mkdirp build; watchify index.js -p [ browserify-livereload --host 127.0.0.1 --port 1337 ] -dv -o build/app.js"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

Loading…
Cancel
Save