Merge pull request #12 from ethereum/ci-build

Referenced libs locally
pull/13/head
Aniket 5 years ago committed by GitHub
commit 1a52411287
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      apps/remix-ide/src/app/tabs/debugger/debuggerUI.js
  2. 2
      apps/remix-ide/src/app/tabs/staticanalysis/staticAnalysisView.js
  3. 2
      apps/remix-ide/src/blockchain/providers/vm.js
  4. 2
      apps/remix-ide/src/lib/cmdInterpreterAPI.js
  5. 2
      libs/remix-analyzer/package.json
  6. 2
      libs/remix-debug/package.json
  7. 2
      libs/remix-simulator/package.json
  8. 4
      libs/remix-simulator/src/provider.js
  9. 0
      libs/remix-tests/sol/tests.sol.ts
  10. 0
      libs/remix-tests/sol/tests_accounts.sol.ts
  11. 6
      libs/remix-tests/src/compiler.ts
  12. 2
      libs/remix-tests/src/index.ts
  13. 2
      libs/remix-tests/src/run.ts
  14. 2
      libs/remix-tests/src/runTestSources.ts
  15. 2
      libs/remix-tests/tsconfig.lib.json
  16. 41602
      package-lock.json
  17. 497
      package.json
  18. 2
      tsconfig.json

@ -3,7 +3,7 @@ var StepManagerUI = require('./debuggerUI/StepManager')
var VmDebugger = require('./debuggerUI/VmDebugger') var VmDebugger = require('./debuggerUI/VmDebugger')
var toaster = require('../../ui/tooltip') var toaster = require('../../ui/tooltip')
var Debugger = require('remix-debug').TransactionDebugger var Debugger = require('@remix-project/remix-debug').TransactionDebugger
var SourceHighlighter = require('../../editor/sourceHighlighter') var SourceHighlighter = require('../../editor/sourceHighlighter')

@ -1,5 +1,5 @@
'use strict' 'use strict'
var StaticAnalysisRunner = require('remix-analyzer').CodeAnalysis var StaticAnalysisRunner = require('@remix-project/remix-analyzer').CodeAnalysis
var yo = require('yo-yo') var yo = require('yo-yo')
var $ = require('jquery') var $ = require('jquery')
var remixLib = require('@remix-project/remix-lib') var remixLib = require('@remix-project/remix-lib')

@ -1,6 +1,6 @@
const Web3 = require('web3') const Web3 = require('web3')
const { BN, privateToAddress, stripHexPrefix, hashPersonalMessage } = require('ethereumjs-util') const { BN, privateToAddress, stripHexPrefix, hashPersonalMessage } = require('ethereumjs-util')
const RemixSimulator = require('remix-simulator') const RemixSimulator = require('@remix-project/remix-simulator')
class VMProvider { class VMProvider {

@ -8,7 +8,7 @@ var CompilerImport = require('../app/compiler/compiler-imports')
var toolTip = require('../app/ui/tooltip') var toolTip = require('../app/ui/tooltip')
var globalRegistry = require('../global/registry') var globalRegistry = require('../global/registry')
var SourceHighlighter = require('../app/editor/sourceHighlighter') var SourceHighlighter = require('../app/editor/sourceHighlighter')
var RemixDebug = require('remix-debug').EthDebugger var RemixDebug = require('@remix-project/remix-debug').EthDebugger
var TreeView = require('../app/ui/TreeView') // TODO setup a direct reference to the UI components var TreeView = require('../app/ui/TreeView') // TODO setup a direct reference to the UI components
var solidityTypeFormatter = require('../app/tabs/debugger/debuggerUI/vmDebugger/utils/SolidityTypeFormatter') var solidityTypeFormatter = require('../app/tabs/debugger/debuggerUI/vmDebugger/utils/SolidityTypeFormatter')
var GistHandler = require('./gist-handler') var GistHandler = require('./gist-handler')

@ -1,5 +1,5 @@
{ {
"name": "remix-analyzer", "name": "@remix-project/remix-analyzer",
"version": "0.5.3", "version": "0.5.3",
"description": "Tool to perform static analysis on Solidity smart contracts", "description": "Tool to perform static analysis on Solidity smart contracts",
"main": "./dist/index.js", "main": "./dist/index.js",

@ -1,5 +1,5 @@
{ {
"name": "remix-debug", "name": "@remix-project/remix-debug",
"version": "0.4.5", "version": "0.4.5",
"description": "Tool to debug Ethereum transactions", "description": "Tool to debug Ethereum transactions",
"contributors": [ "contributors": [

@ -1,5 +1,5 @@
{ {
"name": "remix-simulator", "name": "@remix-project/remix-simulator",
"version": "0.1.9-beta.6", "version": "0.1.9-beta.6",
"description": "Ethereum IDE and tools for the web", "description": "Ethereum IDE and tools for the web",
"contributors": [ "contributors": [

@ -14,8 +14,8 @@ const Transactions = require('./methods/transactions.js')
const generateBlock = require('./genesis.js') const generateBlock = require('./genesis.js')
class Provider { class Provider {
constructor(options) { constructor(options = {}) {
this.options = options || {} this.options = options
// TODO: init executionContext here // TODO: init executionContext here
this.executionContext = executionContext this.executionContext = executionContext
this.Accounts = new Accounts(this.executionContext) this.Accounts = new Accounts(this.executionContext)

@ -10,7 +10,7 @@ function regexIndexOf (inputString: string, regex: RegExp, startpos = 0) {
} }
function writeTestAccountsContract (accounts: string[]) { function writeTestAccountsContract (accounts: string[]) {
const testAccountContract = require('../sol/tests_accounts.sol.js') const testAccountContract = require('../sol/tests_accounts.sol')
let body = `address[${accounts.length}] memory accounts;` let body = `address[${accounts.length}] memory accounts;`
if (!accounts.length) body += ';' if (!accounts.length) body += ';'
else { else {
@ -86,8 +86,8 @@ export function compileFileOrFiles(filename: string, isDirectory: boolean, opts:
let compiler: any let compiler: any
const accounts: string[] = opts.accounts || [] const accounts: string[] = opts.accounts || []
const sources: SrcIfc = { const sources: SrcIfc = {
'tests.sol': { content: require('../sol/tests.sol.js') }, 'tests.sol': { content: require('../sol/tests.sol') },
'remix_tests.sol': { content: require('../sol/tests.sol.js') }, 'remix_tests.sol': { content: require('../sol/tests.sol') },
'remix_accounts.sol': { content: writeTestAccountsContract(accounts) } 'remix_accounts.sol': { content: writeTestAccountsContract(accounts) }
} }
const filepath: string = (isDirectory ? filename : path.dirname(filename)) const filepath: string = (isDirectory ? filename : path.dirname(filename))

@ -2,4 +2,4 @@ export { runTestFiles } from './runTestFiles'
export { runTestSources } from './runTestSources' export { runTestSources } from './runTestSources'
export { runTest } from './testRunner' export { runTest } from './testRunner'
export * from './types' export * from './types'
export const assertLibCode = require('../sol/tests.sol.js') export const assertLibCode = require('../sol/tests.sol')

@ -48,7 +48,7 @@ commander
log.info('verbosity level set to ' + commander.verbose.blue) log.info('verbosity level set to ' + commander.verbose.blue)
} }
const web3 = new Web3() const web3 = new Web3()
const provider = new Provider() const provider: any = new Provider()
await provider.init() await provider.init()
web3.setProvider(provider) web3.setProvider(provider)

@ -12,7 +12,7 @@ import { FinalResult, SrcIfc, compilationInterface, ASTInterface, Options,
const createWeb3Provider = async function () { const createWeb3Provider = async function () {
const web3 = new Web3() const web3 = new Web3()
const provider = new Provider() const provider: any = new Provider()
await provider.init() await provider.init()
web3.setProvider(provider) web3.setProvider(provider)
return web3 return web3

@ -4,7 +4,7 @@
"module": "commonjs", "module": "commonjs",
"outDir": "../../dist/out-tsc", "outDir": "../../dist/out-tsc",
"declaration": true, "declaration": true,
"rootDir": "./src", "rootDir": "./",
"types": ["node"] "types": ["node"]
}, },
"exclude": [ "exclude": [

41602
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,254 +1,255 @@
{ {
"name": "remix-project", "name": "remix-project",
"version": "0.0.0", "version": "0.0.0",
"license": "MIT", "license": "MIT",
"description": "Ethereum Remix Monorepo", "description": "Ethereum Remix Monorepo",
"keywords": [ "keywords": [
"ethereum", "ethereum",
"solidity", "solidity",
"compiler" "compiler"
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/ethereum/remix-project.git" "url": "git+https://github.com/ethereum/remix-project.git"
}, },
"author": "@yann300", "author": "@yann300",
"bugs": { "bugs": {
"url": "https://github.com/ethereum/remix-project/issues" "url": "https://github.com/ethereum/remix-project/issues"
}, },
"homepage": "https://github.com/ethereum/remix-project#readme", "homepage": "https://github.com/ethereum/remix-project#readme",
"bin": { "bin": {
"remix-ide": "./apps/remix-ide/bin/remix-ide" "remix-ide": "./apps/remix-ide/bin/remix-ide"
}, },
"scripts": { "scripts": {
"nx": "nx", "nx": "nx",
"start": "nx start", "start": "nx start",
"serve": "nx serve", "serve": "nx serve",
"build": "nx build", "build": "nx build",
"build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "build:libs": "nx run-many --target=build --parallel=false --with-deps=true --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver",
"test": "nx test", "test": "nx test",
"test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "test:libs": "nx run-many --target=test --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver",
"lint": "nx lint", "lint": "nx lint",
"lint:libs": "nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver", "lint:libs": "nx run-many --target=lint --projects=remix-analyzer,remix-astwalker,remix-debug,remix-lib,remix-simulator,remix-solidity,remix-tests,remix-url-resolver",
"e2e": "nx e2e", "e2e": "nx e2e",
"affected:apps": "nx affected:apps", "affected:apps": "nx affected:apps",
"affected:libs": "nx affected:libs", "affected:libs": "nx affected:libs",
"affected:build": "nx affected:build", "affected:build": "nx affected:build",
"affected:e2e": "nx affected:e2e", "affected:e2e": "nx affected:e2e",
"affected:test": "nx affected:test", "affected:test": "nx affected:test",
"affected:lint": "nx affected:lint", "affected:lint": "nx affected:lint",
"affected:dep-graph": "nx affected:dep-graph", "affected:dep-graph": "nx affected:dep-graph",
"affected": "nx affected", "affected": "nx affected",
"format": "nx format:write", "format": "nx format:write",
"format:write": "nx format:write", "format:write": "nx format:write",
"format:check": "nx format:check", "format:check": "nx format:check",
"update": "nx migrate latest", "update": "nx migrate latest",
"workspace-schematic": "nx workspace-schematic", "workspace-schematic": "nx workspace-schematic",
"dep-graph": "nx dep-graph", "dep-graph": "nx dep-graph",
"help": "nx help", "help": "nx help",
"setupremix": "npm run linkremixdebug && npm run linkremixlib && npm run linkremixsolidity && npm run linkremixanalyzer && npm run linkremixtests && npm run linkremixsimulator", "setupremix": "npm run linkremixdebug && npm run linkremixlib && npm run linkremixsolidity && npm run linkremixanalyzer && npm run linkremixtests && npm run linkremixsimulator",
"pullremix": "git clone https://github.com/ethereum/remix", "pullremix": "git clone https://github.com/ethereum/remix",
"linkremixlib": "cd node_modules && rm -rf remix-lib && ln -s ../../remix/remix-lib remix-lib && cd ..", "linkremixlib": "cd node_modules && rm -rf remix-lib && ln -s ../../remix/remix-lib remix-lib && cd ..",
"linkremixsolidity": "cd node_modules && rm -rf remix-solidity && ln -s ../../remix/remix-solidity remix-solidity && cd ..", "linkremixsolidity": "cd node_modules && rm -rf remix-solidity && ln -s ../../remix/remix-solidity remix-solidity && cd ..",
"linkremixtests": "cd node_modules && rm -rf remix-tests && ln -s ../../remix/remix-tests remix-tests && cd ..", "linkremixtests": "cd node_modules && rm -rf remix-tests && ln -s ../../remix/remix-tests remix-tests && cd ..",
"linkremixdebug": "cd node_modules && rm -rf remix-debug && ln -s ../../remix/remix-debug remix-debug && cd ..", "linkremixdebug": "cd node_modules && rm -rf remix-debug && ln -s ../../remix/remix-debug remix-debug && cd ..",
"linkremixanalyzer": "cd node_modules && rm -rf remix-analyzer && ln -s ../../remix/remix-analyzer remix-analyzer && cd ..", "linkremixanalyzer": "cd node_modules && rm -rf remix-analyzer && ln -s ../../remix/remix-analyzer remix-analyzer && cd ..",
"linkremixsimulator": "cd node_modules && rm -rf remix-simulator && ln -s ../../remix/remix-simulator remix-simulator && cd ..", "linkremixsimulator": "cd node_modules && rm -rf remix-simulator && ln -s ../../remix/remix-simulator remix-simulator && cd ..",
"build_debugger": "browserify apps/remix-ide/src/app/debugger/remix-debugger/index.js -o apps/remix-ide/src/app/debugger/remix-debugger/build/app.js", "build_debugger": "browserify apps/remix-ide/src/app/debugger/remix-debugger/index.js -o apps/remix-ide/src/app/debugger/remix-debugger/build/app.js",
"browsertest": "sleep 5 && npm run nightwatch_local", "browsertest": "sleep 5 && npm run nightwatch_local",
"csslint": "csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='apps/remix-ide/assets/css/font-awesome.min.css' apps/remix-ide/assets/css/", "csslint": "csslint --ignore=order-alphabetical --errors='errors,duplicate-properties,empty-rules' --exclude-list='apps/remix-ide/assets/css/font-awesome.min.css' apps/remix-ide/assets/css/",
"downloadsolc_root": "wget --no-check-certificate https://solc-bin.ethereum.org/bin/soljson-v0.6.6+commit.6c089d02.js -O soljson.js", "downloadsolc_root": "wget --no-check-certificate https://solc-bin.ethereum.org/bin/soljson-v0.6.6+commit.6c089d02.js -O soljson.js",
"make-mock-compiler": "node apps/remix-ide/ci/makeMockCompiler.js", "make-mock-compiler": "node apps/remix-ide/ci/makeMockCompiler.js",
"minify": "uglifyjs --in-source-map inline --source-map-inline -c warnings=false", "minify": "uglifyjs --in-source-map inline --source-map-inline -c warnings=false",
"nightwatch_parallel": "nightwatch -e chrome,firefox --config apps/remix-ide/nightwatch.js", "nightwatch_parallel": "nightwatch -e chrome,firefox --config apps/remix-ide/nightwatch.js",
"nightwatch_local_firefox": "nightwatch --config apps/remix-ide/nightwatch.js --env firefox", "nightwatch_local_firefox": "nightwatch --config apps/remix-ide/nightwatch.js --env firefox",
"nightwatch_local_chrome": "nightwatch --config apps/remix-ide/nightwatch.js --env chrome", "nightwatch_local_chrome": "nightwatch --config apps/remix-ide/nightwatch.js --env chrome",
"nightwatch_local_ballot": "nightwatch ./apps/remix-ide/test-browser/tests/ballot.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_ballot": "nightwatch ./apps/remix-ide/test-browser/tests/ballot.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_libraryDeployment": "nightwatch ./apps/remix-ide/test-browser/tests/libraryDeployment.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_libraryDeployment": "nightwatch ./apps/remix-ide/test-browser/tests/libraryDeployment.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_solidityImport": "nightwatch ./apps/remix-ide/test-browser/tests/solidityImport.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_solidityImport": "nightwatch ./apps/remix-ide/test-browser/tests/solidityImport.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_recorder": "nightwatch ./apps/remix-ide/test-browser/tests/recorder.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_recorder": "nightwatch ./apps/remix-ide/test-browser/tests/recorder.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_transactionExecution": "nightwatch ./apps/remix-ide/test-browser/tests/transactionExecution.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_transactionExecution": "nightwatch ./apps/remix-ide/test-browser/tests/transactionExecution.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_staticAnalysis": "nightwatch ./apps/remix-ide/test-browser/tests/staticAnalysis.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_staticAnalysis": "nightwatch ./apps/remix-ide/test-browser/tests/staticAnalysis.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_signingMessage": "nightwatch ./apps/remix-ide/test-browser/tests/signingMessage.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_signingMessage": "nightwatch ./apps/remix-ide/test-browser/tests/signingMessage.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_specialFunctions": "nightwatch ./apps/remix-ide/test-browser/tests/specialFunctions.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_specialFunctions": "nightwatch ./apps/remix-ide/test-browser/tests/specialFunctions.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_solidityUnitTests": "nightwatch ./apps/remix-ide/test-browser/tests/solidityUnittests.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_solidityUnitTests": "nightwatch ./apps/remix-ide/test-browser/tests/solidityUnittests.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_remixd": "nightwatch ./apps/remix-ide/test-browser/tests/remixd.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_remixd": "nightwatch ./apps/remix-ide/test-browser/tests/remixd.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_terminal": "nightwatch ./apps/remix-ide/test-browser/tests/terminal.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_terminal": "nightwatch ./apps/remix-ide/test-browser/tests/terminal.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_gist": "nightwatch ./apps/remix-ide/test-browser/tests/gist.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_gist": "nightwatch ./apps/remix-ide/test-browser/tests/gist.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_workspace": "nightwatch ./apps/remix-ide/test-browser/tests/workspace.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_workspace": "nightwatch ./apps/remix-ide/test-browser/tests/workspace.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_defaultLayout": "nightwatch ./apps/remix-ide/test-browser/tests/defaultLayout.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_defaultLayout": "nightwatch ./apps/remix-ide/test-browser/tests/defaultLayout.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_pluginManager": "nightwatch ./apps/remix-ide/test-browser/tests/pluginManager.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_pluginManager": "nightwatch ./apps/remix-ide/test-browser/tests/pluginManager.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_publishContract": "nightwatch ./apps/remix-ide/test-browser/tests/publishContract.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_publishContract": "nightwatch ./apps/remix-ide/test-browser/tests/publishContract.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_generalSettings": "nightwatch ./apps/remix-ide/test-browser/tests/generalSettings.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_generalSettings": "nightwatch ./apps/remix-ide/test-browser/tests/generalSettings.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_fileExplorer": "nightwatch ./apps/remix-ide/test-browser/tests/fileExplorer.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_fileExplorer": "nightwatch ./apps/remix-ide/test-browser/tests/fileExplorer.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_debugger": "nightwatch ./apps/remix-ide/test-browser/tests/debugger.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_debugger": "nightwatch ./apps/remix-ide/test-browser/tests/debugger.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_editor": "nightwatch ./apps/remix-ide/test-browser/tests/editor.test.js --config apps/remix-ide/nightwatch.js --env chrome ", "nightwatch_local_editor": "nightwatch ./apps/remix-ide/test-browser/tests/editor.test.js --config apps/remix-ide/nightwatch.js --env chrome ",
"nightwatch_local_runAndDeploy": "nightwatch ./apps/remix-ide/test-browser/tests/runAndDeploy.js --config apps/remix-ide/nightwatch.js --env chrome-runAndDeploy ", "nightwatch_local_runAndDeploy": "nightwatch ./apps/remix-ide/test-browser/tests/runAndDeploy.js --config apps/remix-ide/nightwatch.js --env chrome-runAndDeploy ",
"onchange": "onchange apps/remix-ide/build/app.js -- npm-run-all lint", "onchange": "onchange apps/remix-ide/build/app.js -- npm-run-all lint",
"prepublish": "mkdirp build; npm-run-all -ls downloadsolc_root build", "prepublish": "mkdirp build; npm-run-all -ls downloadsolc_root build:libs build",
"remixd": "remixd -s ./apps/remix-ide/contracts --remix-ide http://127.0.0.1:4200", "remixd": "remixd -s ./apps/remix-ide/contracts --remix-ide http://127.0.0.1:4200",
"selenium": "selenium-standalone start", "selenium": "selenium-standalone start",
"selenium-install": "selenium-standalone install", "selenium-install": "selenium-standalone install",
"sourcemap": "exorcist --root ../ apps/remix-ide/build/app.js.map > apps/remix-ide/build/app.js", "sourcemap": "exorcist --root ../ apps/remix-ide/build/app.js.map > apps/remix-ide/build/app.js",
"test-browser": "npm-run-all -lpr selenium downloadsolc_root make-mock-compiler serve browsertest", "test-browser": "npm-run-all -lpr selenium downloadsolc_root make-mock-compiler serve browsertest",
"watch": "watchify apps/remix-ide/src/index.js -dv -p browserify-reload -o apps/remix-ide/build/app.js --exclude solc", "watch": "watchify apps/remix-ide/src/index.js -dv -p browserify-reload -o apps/remix-ide/build/app.js --exclude solc",
"reinstall": "rm ./node-modules/ -rf; rm package-lock.json; rm ./build/ -rf; npm install; npm run build", "reinstall": "rm ./node-modules/ -rf; rm package-lock.json; rm ./build/ -rf; npm install; npm run build",
"ganache-cli": "npx ganache-cli" "ganache-cli": "npx ganache-cli"
}, },
"browserify": { "browserify": {
"transform": [ "transform": [
[ [
"babelify", "babelify",
{ {
"sourceMapsAbsolute": false, "sourceMapsAbsolute": false,
"sourceMaps": true, "sourceMaps": true,
"plugins": [ "plugins": [
[ [
"module:fast-async", "module:fast-async",
{ {
"runtimePattern": null, "runtimePattern": null,
"compiler": { "compiler": {
"es7": true, "es7": true,
"noRuntime": true, "noRuntime": true,
"promises": true, "promises": true,
"wrapAwait": true "wrapAwait": true
}
} }
], }
[
"module:babel-plugin-yo-yoify"
],
[
"module:@babel/plugin-transform-object-assign"
]
], ],
"presets": [ [
"@babel/preset-env" "module:babel-plugin-yo-yoify"
],
[
"module:@babel/plugin-transform-object-assign"
] ]
} ],
] "presets": [
"@babel/preset-env"
]
}
] ]
}, ]
"dependencies": { },
"@remixproject/engine": "^0.2.3", "dependencies": {
"@types/tape": "^4.2.33", "@remixproject/engine": "^0.2.3",
"ansi-gray": "^0.1.1", "@types/tape": "^4.2.33",
"change-case": "^4.1.1", "ansi-gray": "^0.1.1",
"color-support": "^1.1.3", "change-case": "^4.1.1",
"ethereumjs-block": "^2.2.2", "color-support": "^1.1.3",
"ethereumjs-tx": "^2.1.2", "ethereumjs-block": "^2.2.2",
"ethereumjs-vm": "4.1.3", "ethereumjs-tx": "^2.1.2",
"http-server": "^0.11.1", "ethereumjs-vm": "4.1.3",
"npm-install-version": "^6.0.2", "http-server": "^0.11.1",
"time-stamp": "^2.2.0", "npm-install-version": "^6.0.2",
"winston": "^3.3.3" "signale": "^1.4.0",
}, "time-stamp": "^2.2.0",
"devDependencies": { "winston": "^3.3.3"
"@babel/core": "^7.4.5", },
"@babel/plugin-transform-modules-amd": "^7.10.4", "devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.10.4", "@babel/core": "^7.4.5",
"@babel/plugin-transform-object-assign": "^7.2.0", "@babel/plugin-transform-modules-amd": "^7.10.4",
"@babel/plugin-transform-runtime": "^7.10.4", "@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/polyfill": "^7.4.4", "@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.10.4", "@babel/plugin-transform-runtime": "^7.10.4",
"@babel/preset-es2015": "^7.0.0-beta.53", "@babel/polyfill": "^7.4.4",
"@babel/preset-es2017": "latest", "@babel/preset-env": "^7.10.4",
"@babel/preset-stage-0": "^7.0.0", "@babel/preset-es2015": "^7.0.0-beta.53",
"@babel/register": "^7.4.4", "@babel/preset-es2017": "latest",
"@fortawesome/fontawesome-free": "^5.8.1", "@babel/preset-stage-0": "^7.0.0",
"@nrwl/cypress": "9.2.4", "@babel/register": "^7.4.4",
"@nrwl/eslint-plugin-nx": "^9.4.4", "@fortawesome/fontawesome-free": "^5.8.1",
"@nrwl/jest": "9.4.5", "@nrwl/cypress": "9.2.4",
"@nrwl/linter": "^9.3.0", "@nrwl/eslint-plugin-nx": "^9.4.4",
"@nrwl/node": "^9.4.5", "@nrwl/jest": "9.4.5",
"@nrwl/react": "9.2.4", "@nrwl/linter": "^9.3.0",
"@nrwl/web": "9.2.4", "@nrwl/node": "^9.4.5",
"@nrwl/workspace": "9.2.4", "@nrwl/react": "9.2.4",
"@resolver-engine/imports": "^0.3.0", "@nrwl/web": "9.2.4",
"@types/chai": "^4.2.11", "@nrwl/workspace": "9.2.4",
"@types/mocha": "^7.0.2", "@resolver-engine/imports": "^0.3.0",
"@types/node": "~8.9.4", "@types/chai": "^4.2.11",
"@types/react": "16.9.17", "@types/mocha": "^7.0.2",
"@types/react-dom": "16.9.4", "@types/node": "~8.9.4",
"@types/react-router-dom": "5.1.3", "@types/react": "16.9.17",
"@typescript-eslint/eslint-plugin": "^3.3.0", "@types/react-dom": "16.9.4",
"@typescript-eslint/parser": "^3.3.0", "@types/react-router-dom": "5.1.3",
"ace-mode-move": "0.0.1", "@typescript-eslint/eslint-plugin": "^3.3.0",
"ace-mode-solidity": "^0.1.0", "@typescript-eslint/parser": "^3.3.0",
"ace-mode-zokrates": "^1.0.0", "ace-mode-move": "0.0.1",
"async": "^2.1.2", "ace-mode-solidity": "^0.1.0",
"babel-eslint": "^10.0.0", "ace-mode-zokrates": "^1.0.0",
"babel-plugin-add-module-exports": "^1.0.2", "async": "^2.1.2",
"babel-plugin-fast-async": "^6.1.2", "babel-eslint": "^10.0.0",
"babel-plugin-module-resolver": "^4.0.0", "babel-plugin-add-module-exports": "^1.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0", "babel-plugin-fast-async": "^6.1.2",
"babel-plugin-yo-yoify": "^2.0.0", "babel-plugin-module-resolver": "^4.0.0",
"babel-preset-env": "^1.7.0", "babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-typescript": "^7.0.0-alpha.19", "babel-plugin-yo-yoify": "^2.0.0",
"babelify": "^10.0.0", "babel-preset-env": "^1.7.0",
"brace": "^0.8.0", "babel-preset-typescript": "^7.0.0-alpha.19",
"browserify": "^16.2.3", "babelify": "^10.0.0",
"browserify-reload": "^1.0.3", "brace": "^0.8.0",
"component-type": "^1.2.1", "browserify": "^16.2.3",
"copy-text-to-clipboard": "^1.0.4", "browserify-reload": "^1.0.3",
"csjs-inject": "^1.0.1", "component-type": "^1.2.1",
"csslint": "^1.0.2", "copy-text-to-clipboard": "^1.0.4",
"cypress": "^4.1.0", "csjs-inject": "^1.0.1",
"deep-equal": "^1.0.1", "csslint": "^1.0.2",
"dotenv": "^8.2.0", "cypress": "^4.1.0",
"eslint": "6.8.0", "deep-equal": "^1.0.1",
"eslint-config-prettier": "^6.11.0", "dotenv": "^8.2.0",
"ethereumjs-util": "^6.2.0", "eslint": "6.8.0",
"ethers": "^4.0.27", "eslint-config-prettier": "^6.11.0",
"events": "^3.0.0", "ethereumjs-util": "^6.2.0",
"execr": "^1.0.1", "ethers": "^4.0.27",
"exorcist": "^0.4.0", "events": "^3.0.0",
"exports-loader": "^1.1.0", "execr": "^1.0.1",
"fast-async": "^7.0.6", "exorcist": "^0.4.0",
"fast-levenshtein": "^2.0.6", "exports-loader": "^1.1.0",
"ganache-cli": "^6.8.1", "fast-async": "^7.0.6",
"gists": "^1.0.1", "fast-levenshtein": "^2.0.6",
"ipfs-mini": "^1.1.5", "ganache-cli": "^6.8.1",
"is-electron": "^2.2.0", "gists": "^1.0.1",
"javascript-serialize": "^1.6.1", "ipfs-mini": "^1.1.5",
"jest": "25.2.3", "is-electron": "^2.2.0",
"jquery": "^3.3.1", "javascript-serialize": "^1.6.1",
"js-base64": "^2.1.9", "jest": "25.2.3",
"js-beautify": "1.6.14", "jquery": "^3.3.1",
"minixhr": "^3.2.2", "js-base64": "^2.1.9",
"mkdirp": "^0.5.1", "js-beautify": "1.6.14",
"mocha": "^8.0.1", "minixhr": "^3.2.2",
"nanohtml": "^1.6.3", "mkdirp": "^0.5.1",
"nightwatch": "^1.3.5", "mocha": "^8.0.1",
"notify-error": "^1.2.0", "nanohtml": "^1.6.3",
"npm-link-local": "^1.1.0", "nightwatch": "^1.3.5",
"npm-merge-driver": "^2.3.5", "notify-error": "^1.2.0",
"npm-run-all": "^4.0.2", "npm-link-local": "^1.1.0",
"nyc": "^13.3.0", "npm-merge-driver": "^2.3.5",
"onchange": "^3.2.1", "npm-run-all": "^4.0.2",
"prettier": "1.19.1", "nyc": "^13.3.0",
"remix-tabs": "1.0.48", "onchange": "^3.2.1",
"remixd": "0.1.8-alpha.16", "prettier": "1.19.1",
"request": "^2.83.0", "remix-tabs": "1.0.48",
"rimraf": "^2.6.1", "remixd": "0.1.8-alpha.16",
"selenium-standalone": "^6.17.0", "request": "^2.83.0",
"semver": "^6.1.2", "rimraf": "^2.6.1",
"solc": "^0.6.0", "selenium-standalone": "^6.17.0",
"swarmgw": "^0.3.1", "semver": "^6.1.2",
"tap-spec": "^5.0.0", "solc": "^0.6.0",
"tape": "^4.13.3", "swarmgw": "^0.3.1",
"ts-jest": "25.2.1", "tap-spec": "^5.0.0",
"ts-node": "~7.0.0", "tape": "^4.13.3",
"tslint": "~6.0.0", "ts-jest": "25.2.1",
"typescript": "~3.8.3", "ts-node": "~7.0.0",
"uglify-js": "^2.8.16", "tslint": "~6.0.0",
"vm-browserify": "0.0.4", "typescript": "~3.8.3",
"watchify": "^3.9.0", "uglify-js": "^2.8.16",
"web3": "1.2.4", "vm-browserify": "0.0.4",
"webworkify": "^1.2.1", "watchify": "^3.9.0",
"worker-loader": "^2.0.0", "web3": "1.2.4",
"yo-yo": "github:ioedeveloper/yo-yo", "webworkify": "^1.2.1",
"yo-yoify": "^3.7.3", "worker-loader": "^2.0.0",
"webworkify-webpack": "^2.1.5" "yo-yo": "github:ioedeveloper/yo-yo",
} "yo-yoify": "^3.7.3",
"webworkify-webpack": "^2.1.5"
} }
}

@ -22,7 +22,7 @@
"@remix-project/remix-lib": ["dist/libs/remix-lib/index.js"], "@remix-project/remix-lib": ["dist/libs/remix-lib/index.js"],
"@remix-project/remix-simulator": ["dist/libs/remix-simulator/index.js"], "@remix-project/remix-simulator": ["dist/libs/remix-simulator/index.js"],
"@remix-project/remix-solidity": ["dist/libs/remix-solidity/index.js"], "@remix-project/remix-solidity": ["dist/libs/remix-solidity/index.js"],
"@remix-project/remix-tests": ["dist/libs/remix-tests/index.js"], "@remix-project/remix-tests": ["dist/libs/remix-tests/src/index.js"],
"@remix-project/remix-url-resolver": ["dist/libs/remix-url-resolver/index.js"] "@remix-project/remix-url-resolver": ["dist/libs/remix-url-resolver/index.js"]
} }
}, },

Loading…
Cancel
Save