mirror of
https://github.com/embarklabs/embark.git
synced 2025-02-18 08:36:51 +00:00
TL;DR ===== `yarn install` in a fresh clone of the repo. `yarn reboot` when switching branches. When pulling in these changes, there may be untracked files at the root in all/some of: ``` .embark/ .nyc_output/ coverage/ dist/ embark-ui/ test_apps/ ``` They can be safely deleted since those paths are no longer in use at the root. Many of the scripts in the top-level `package.json` support Lerna's [filter options]. For example: `yarn build --scope embark` build only `packages/embark`. `yarn build --ignore embark-ui` build everything except `packages/embark-ui`. Scoping scripts will be more useful when there are more packages in the monorepo and, for example, `yarn start` doesn't need to be invoked for all of them while working on just a few of them simultaneously, e.g `embark` and `embarkjs`. It's also possible to `cd` into a particular package and run its scripts directly: ``` cd packages/embark && yarn watch ``` Hot Topics & Questions ====================== What should be done about the [README][embark-readme] for `packages/embark`? Should the top-level README be duplicated in that package? Lerna is setup to use [Fixed/Locked mode][fixed-locked], and accordingly `packages/embark-ui` is set to `4.0.0-beta.0`. The same will be true when adding embarkjs, swarm-api, etc. to the monorepo. Is this acceptable or do we want to use [Independent mode][independent]? Scripts ======= If a package doesn't have a matching script, `lerna run` skips it automatically. For example, `packages/embark-ui` doesn't have a `typecheck` script. `yarn build` ------------ Runs babel, webpack, etc. according to a package's `build` script. `yarn build:no-ui` is a shortcut for `yarn build --ignore embark-ui`. `yarn ci` --------- Runs a series of scripts relevant in a CI context according to a package's `ci` script. For `packages/embark` that's `lint typecheck build test package`. Also runs the `ci` script of the embedded `test_dapps` monorepo. `yarn clean` ------------ Runs rimraf, etc. according to a package's `clean` script. `yarn globalize` ---------------- Makes the development embark available on the global PATH, either via symlink (Linux, macOS) or a shim script (Windows). `yarn lint` ----------- Runs eslint, etc. according to a package's `lint` script. `yarn package` -------------- Invokes `npm pack` according to a package's `package` script. `yarn qa` --------- Very similar to `ci`, runs a series of scripts according to a package's `qa` script. The big difference between `ci` and `qa` is that at the top-level `qa` first kicks off `reboot:full`. There is a `preqa` script ([invoked automatically][npm-scripts]), which is a bit of a wart. It makes sure that `embark reset` can be run successfully in `packages/embark/templates/*` when the `reboot` script invokes the `reset` script. The `qa` script is invoked by `yarn release` before the latter proceeds to invoke `lerna publish`. `yarn reboot` ------------- Invokes the `reset` script and then does `yarn install`. The `reboot:full` variant invokes `reset:full` and then does `yarn install`. `yarn release` -------------- Works in concert with [lerna publish], which will prompt to verify the version before proceeding. Use `n` to cancel instead of `ctrl-c` as `lerna publish` has been seen to occasionally misbehave when not exited cleanly (e.g. creating a tag when it shouldn't have). ``` yarn release [bump] [--options] ``` * `[bump]` see [`publish` positionals][pub-pos] and [`version` positionals][ver-pos]; an exact version can also be specified. * `--preid` prerelease identifier, e.g. `beta`; when doing a prerelease bump will default to whatever identifier is currently in use. * `--dist-tag` registry distribution tag, defaults to `latest`. * `--message` commit message format, defaults to `chore(release): %v`. * `--sign` indicates that the git commit and tag should be signed; not signed by default. * `--release-branch` default is `master`; must match the current branch. * `--git-remote` default is `origin`. * `--registry` default is `https://registry.npmjs.org/` per the top-level [`lerna.json`][lerna-json]. To release `4.0.0-beta.1` as `embark@next` (assuming version is currently at `4.0.0-beta.0`) could do: ``` yarn release prerelease --dist-tag next ``` For *test releases* (there is no longer a `--dry-run` option) [verdaccio] and a filesystem git remote can be used. Condensend instructions: ``` mkdir -p ~/temp/clones && cd ~/temp/clones git clone git@github.com:embark-framework/embark.git cd ~/repos/embark git remote add FAKEembark ~/temp/clones/embark ``` in another terminal: ``` npm i -g verdaccio && verdaccio ``` in the first terminal: ``` yarn release --git-remote FAKEembark --registry http://localhost:4873/ ``` `yarn reset` ------------ Invokes cleaning and resetting steps according to a package's `reset` script. The big difference between `clean` and `reset` is that `reset` is intended to delete a package's `node_modules`. The `reset:full` variant deletes the monorepo's top-level `node_modules` at the end. That shouldn't be necessary too often, e.g. in day-to-day work when switching branches, which is why there is `reboot` / `reset` vs. `reboot:full` / `reset:full`. Errors may be seen related to invocation of `embark reset` if embark is not built, but `reset` will still complete successfully. `yarn start` ------------ Runs babel, webpack, tsc, etc. (in parallel, in watch mode) according to a package's `start` script. `yarn test` ----------- Run mocha, etc. according to a package's `test` script. The `test:full` variant runs a series of scripts: `lint typecheck test test_dapps`. `yarn test_dapps` ----------------- Runs the `test` script of the embedded `test_dapps` monorepo. The `test_dapps:ci` and `test_dapps:qa` variants run the `ci` and `qa` scripts of the embedded `test_dapps` monorepo, respectively. `yarn typecheck` ---------------- Runs tsc, etc. according to a package's `typecheck` script. Notes ===== `npx` is used in some of the top-level and package scripts to ensure the scripts can run even if `node_modules` is missing. [`"nohoist"`][nohoist] specifies a couple of embark packages because [`restrictPath`][restrictpath] is interfering with access to modules that are located in a higher-up `node_modules`. All dependencies in `packages/embark-ui` have been made `devDependencies` since its production build is self-contained. `packages/embark`'s existing CHANGELOG's formatting has been slightly adjusted to match the formatting that Lerna will use going forward (entries in the log haven't been modified). Lerna will generate a CHANGELOG at the top-level and in each package. Since we're transitioning to a monorepo, things may look a little wonky with respect to old entries in `packages/embark/CHANGELOG.md` and going forward we need to consider how scoping our commits corresponds to member-packages of the monorepo. In `packages/embark`, `test` invokes `scripts/test`, which starts a child process wherein `process.env.DAPP_PATH` is a temporary path that has all of `packages/embark/dist/test` copied into it, so that paths to test helpers/fixtures don't need to be prefixed with `dist/test/` and so that a `.embark` directory doesn't get written into `packages/embark`. The `"engines"` specified in top-level and packages' `package.json` reflect a node and npm pair that match (a source of confusion in the past). The pair was chosen according to the first post v5 npm that's bundled with node. A `"runtime"` key/object has been introduced in `packages/embark/package.json` which is used as the basis for specifying the minimum version of node that can be used to run embark, and that's what is checked by `bin/embark`. Some changes have been introduced, e.g. in `lib/core/config` and `lib/utils/solidity/remapImports` so that it's *not* implicitly assumed that `process.env.DAPP_PATH` / `fs.dappPath()` are the same as `process.cwd()`. There are probably several++ places where that assumption is still in effect, and we should work to identify and correct them. `embark reset` now deletes `embarkArtifacts/` within a dapp root, and `embarkArtifacts/` is git-ignored. `lib/core/env` adds all `node_modules` relative to `process.env.EMBARK_PATH` to `NODE_PATH` so that embark's modules can be resolved as expected whether embark's `node_modules` have been deduped or are installed in npm's flat "global style". `checkDependencies` has been inlined (see `lib/utils/checkDependencies`) and slightly modified to support dependencies that have been hoisted into a higher-up `node_modules`, e.g. as part of a yarn workspace. eslint has been disabled for that script to avoid more involved changes to it. `test_apps` is not in `packages/embark`; rather, there is `test_dapps` at the top-level of the monorepo. `test_dapps` is an embedded monorepo, and its `ci` / `qa` scripts `npm install` embark from freshly built tarballs of the packages in the outer monorepo and then use that installation to run `embark test` in the dapps. This should allow us to rapidly detect breakage related to auto-bumps in transitive dependencies. [filter options]: https://github.com/lerna/lerna/tree/master/core/filter-options [embark-readme]: https://github.com/embark-framework/embark/blob/build/lerna/packages/embark/README.md [fixed-locked]: https://github.com/lerna/lerna#fixedlocked-mode-default [independent]: https://github.com/lerna/lerna#independent-mode [npm-scripts]: https://docs.npmjs.com/misc/scripts [lerna publish]: https://github.com/lerna/lerna/tree/master/commands/publish [pub-pos]: https://github.com/lerna/lerna/tree/master/commands/publish#positionals [ver-pos]: https://github.com/lerna/lerna/tree/master/commands/version#positionals [lerna-json]: https://github.com/embark-framework/embark/blob/build/lerna/lerna.json#L11 [verdaccio]: https://www.npmjs.com/package/verdaccio [nohoist]: https://github.com/embark-framework/embark/blob/build/lerna/package.json#L52-L55 [restrictpath]: https://github.com/embark-framework/embark/blob/build/lerna/packages/embark/src/lib/core/fs.js#L9
548 lines
20 KiB
JSON
548 lines
20 KiB
JSON
{
|
|
"name": "test_app",
|
|
"requires": true,
|
|
"lockfileVersion": 1,
|
|
"dependencies": {
|
|
"@babel/code-frame": {
|
|
"version": "7.0.0",
|
|
"resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz",
|
|
"integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"@babel/highlight": "^7.0.0"
|
|
}
|
|
},
|
|
"@babel/highlight": {
|
|
"version": "7.0.0",
|
|
"resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz",
|
|
"integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==",
|
|
"dev": true,
|
|
"requires": {
|
|
"chalk": "^2.0.0",
|
|
"esutils": "^2.0.2",
|
|
"js-tokens": "^4.0.0"
|
|
}
|
|
},
|
|
"@babel/runtime": {
|
|
"version": "7.3.1",
|
|
"resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.3.1.tgz",
|
|
"integrity": "sha512-7jGW8ppV0ant637pIqAcFfQDDH1orEPGJb8aXfUozuCU3QqX7rX4DA8iwrbPrR1hcH0FTTHz47yQnk+bl5xHQA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"regenerator-runtime": "^0.12.0"
|
|
}
|
|
},
|
|
"@babel/runtime-corejs2": {
|
|
"version": "7.3.1",
|
|
"resolved": "https://registry.npmjs.org/@babel/runtime-corejs2/-/runtime-corejs2-7.3.1.tgz",
|
|
"integrity": "sha512-YpO13776h3e6Wy8dl2J8T9Qwlvopr+b4trCEhHE+yek6yIqV8sx6g3KozdHMbXeBpjosbPi+Ii5Z7X9oXFHUKA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"core-js": "^2.5.7",
|
|
"regenerator-runtime": "^0.12.0"
|
|
}
|
|
},
|
|
"ansi-styles": {
|
|
"version": "3.2.1",
|
|
"resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz",
|
|
"integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"color-convert": "^1.9.0"
|
|
}
|
|
},
|
|
"balanced-match": {
|
|
"version": "1.0.0",
|
|
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
|
|
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=",
|
|
"dev": true
|
|
},
|
|
"bootstrap": {
|
|
"version": "3.4.0",
|
|
"resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-3.4.0.tgz",
|
|
"integrity": "sha512-F1yTDO9OHKH0xjl03DsOe8Nu1OWBIeAugGMhy3UTIYDdbbIPesQIhCEbj+HEr6wqlwweGAlP8F3OBC6kEuhFuw==",
|
|
"dev": true
|
|
},
|
|
"brace-expansion": {
|
|
"version": "1.1.11",
|
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
|
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"balanced-match": "^1.0.0",
|
|
"concat-map": "0.0.1"
|
|
}
|
|
},
|
|
"chalk": {
|
|
"version": "2.4.2",
|
|
"resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz",
|
|
"integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==",
|
|
"dev": true,
|
|
"requires": {
|
|
"ansi-styles": "^3.2.1",
|
|
"escape-string-regexp": "^1.0.5",
|
|
"supports-color": "^5.3.0"
|
|
}
|
|
},
|
|
"classnames": {
|
|
"version": "2.2.6",
|
|
"resolved": "https://registry.npmjs.org/classnames/-/classnames-2.2.6.tgz",
|
|
"integrity": "sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q==",
|
|
"dev": true
|
|
},
|
|
"color-convert": {
|
|
"version": "1.9.3",
|
|
"resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz",
|
|
"integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==",
|
|
"dev": true,
|
|
"requires": {
|
|
"color-name": "1.1.3"
|
|
}
|
|
},
|
|
"color-name": {
|
|
"version": "1.1.3",
|
|
"resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz",
|
|
"integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=",
|
|
"dev": true
|
|
},
|
|
"concat-map": {
|
|
"version": "0.0.1",
|
|
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
|
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=",
|
|
"dev": true
|
|
},
|
|
"core-js": {
|
|
"version": "2.6.3",
|
|
"resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.3.tgz",
|
|
"integrity": "sha512-l00tmFFZOBHtYhN4Cz7k32VM7vTn3rE2ANjQDxdEN6zmXZ/xq1jQuutnmHvMG1ZJ7xd72+TA5YpUK8wz3rWsfQ==",
|
|
"dev": true
|
|
},
|
|
"cross-env": {
|
|
"version": "5.2.0",
|
|
"resolved": "https://registry.npmjs.org/cross-env/-/cross-env-5.2.0.tgz",
|
|
"integrity": "sha512-jtdNFfFW1hB7sMhr/H6rW1Z45LFqyI431m3qU6bFXcQ3Eh7LtBuG3h74o7ohHZ3crrRkkqHlo4jYHFPcjroANg==",
|
|
"dev": true,
|
|
"requires": {
|
|
"cross-spawn": "^6.0.5",
|
|
"is-windows": "^1.0.0"
|
|
}
|
|
},
|
|
"cross-spawn": {
|
|
"version": "6.0.5",
|
|
"resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz",
|
|
"integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==",
|
|
"dev": true,
|
|
"requires": {
|
|
"nice-try": "^1.0.4",
|
|
"path-key": "^2.0.1",
|
|
"semver": "^5.5.0",
|
|
"shebang-command": "^1.2.0",
|
|
"which": "^1.2.9"
|
|
}
|
|
},
|
|
"dom-helpers": {
|
|
"version": "3.4.0",
|
|
"resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-3.4.0.tgz",
|
|
"integrity": "sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"@babel/runtime": "^7.1.2"
|
|
}
|
|
},
|
|
"embark-service": {
|
|
"version": "file:extensions/embark-service",
|
|
"dev": true,
|
|
"requires": {
|
|
"haml": "0.4.3"
|
|
}
|
|
},
|
|
"escape-string-regexp": {
|
|
"version": "1.0.5",
|
|
"resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz",
|
|
"integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=",
|
|
"dev": true
|
|
},
|
|
"esutils": {
|
|
"version": "2.0.2",
|
|
"resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz",
|
|
"integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=",
|
|
"dev": true
|
|
},
|
|
"fs-extra": {
|
|
"version": "7.0.1",
|
|
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-7.0.1.tgz",
|
|
"integrity": "sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==",
|
|
"dev": true,
|
|
"requires": {
|
|
"graceful-fs": "^4.1.2",
|
|
"jsonfile": "^4.0.0",
|
|
"universalify": "^0.1.0"
|
|
}
|
|
},
|
|
"fs.realpath": {
|
|
"version": "1.0.0",
|
|
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
|
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=",
|
|
"dev": true
|
|
},
|
|
"glob": {
|
|
"version": "7.1.3",
|
|
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.3.tgz",
|
|
"integrity": "sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==",
|
|
"dev": true,
|
|
"requires": {
|
|
"fs.realpath": "^1.0.0",
|
|
"inflight": "^1.0.4",
|
|
"inherits": "2",
|
|
"minimatch": "^3.0.4",
|
|
"once": "^1.3.0",
|
|
"path-is-absolute": "^1.0.0"
|
|
}
|
|
},
|
|
"graceful-fs": {
|
|
"version": "4.1.15",
|
|
"resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz",
|
|
"integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==",
|
|
"dev": true
|
|
},
|
|
"haml": {
|
|
"version": "0.4.3",
|
|
"resolved": "https://registry.npmjs.org/haml/-/haml-0.4.3.tgz",
|
|
"integrity": "sha1-90BTGPPC7dGXpIsbjysvE+C7U3g=",
|
|
"dev": true
|
|
},
|
|
"has-flag": {
|
|
"version": "3.0.0",
|
|
"resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
|
|
"integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
|
|
"dev": true
|
|
},
|
|
"inflight": {
|
|
"version": "1.0.6",
|
|
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
|
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
|
|
"dev": true,
|
|
"requires": {
|
|
"once": "^1.3.0",
|
|
"wrappy": "1"
|
|
}
|
|
},
|
|
"inherits": {
|
|
"version": "2.0.3",
|
|
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz",
|
|
"integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=",
|
|
"dev": true
|
|
},
|
|
"invariant": {
|
|
"version": "2.2.4",
|
|
"resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz",
|
|
"integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"loose-envify": "^1.0.0"
|
|
}
|
|
},
|
|
"is-windows": {
|
|
"version": "1.0.2",
|
|
"resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz",
|
|
"integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==",
|
|
"dev": true
|
|
},
|
|
"isexe": {
|
|
"version": "2.0.0",
|
|
"resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz",
|
|
"integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=",
|
|
"dev": true
|
|
},
|
|
"jquery": {
|
|
"version": "3.3.1",
|
|
"resolved": "https://registry.npmjs.org/jquery/-/jquery-3.3.1.tgz",
|
|
"integrity": "sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==",
|
|
"dev": true
|
|
},
|
|
"js-tokens": {
|
|
"version": "4.0.0",
|
|
"resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz",
|
|
"integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==",
|
|
"dev": true
|
|
},
|
|
"jsonfile": {
|
|
"version": "4.0.0",
|
|
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz",
|
|
"integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=",
|
|
"dev": true,
|
|
"requires": {
|
|
"graceful-fs": "^4.1.6"
|
|
}
|
|
},
|
|
"keycode": {
|
|
"version": "2.2.0",
|
|
"resolved": "https://registry.npmjs.org/keycode/-/keycode-2.2.0.tgz",
|
|
"integrity": "sha1-PQr1bce4uOXLqNCpfxByBO7CKwQ=",
|
|
"dev": true
|
|
},
|
|
"loose-envify": {
|
|
"version": "1.4.0",
|
|
"resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz",
|
|
"integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==",
|
|
"dev": true,
|
|
"requires": {
|
|
"js-tokens": "^3.0.0 || ^4.0.0"
|
|
}
|
|
},
|
|
"minimatch": {
|
|
"version": "3.0.4",
|
|
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
|
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"brace-expansion": "^1.1.7"
|
|
}
|
|
},
|
|
"nice-try": {
|
|
"version": "1.0.5",
|
|
"resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz",
|
|
"integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==",
|
|
"dev": true
|
|
},
|
|
"object-assign": {
|
|
"version": "4.1.1",
|
|
"resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz",
|
|
"integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=",
|
|
"dev": true
|
|
},
|
|
"once": {
|
|
"version": "1.4.0",
|
|
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
|
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
|
"dev": true,
|
|
"requires": {
|
|
"wrappy": "1"
|
|
}
|
|
},
|
|
"path-is-absolute": {
|
|
"version": "1.0.1",
|
|
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
|
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=",
|
|
"dev": true
|
|
},
|
|
"path-key": {
|
|
"version": "2.0.1",
|
|
"resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz",
|
|
"integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=",
|
|
"dev": true
|
|
},
|
|
"prop-types": {
|
|
"version": "15.6.2",
|
|
"resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.6.2.tgz",
|
|
"integrity": "sha512-3pboPvLiWD7dkI3qf3KbUe6hKFKa52w+AE0VCqECtf+QHAKgOL37tTaNCnuX1nAAQ4ZhyP+kYVKf8rLmJ/feDQ==",
|
|
"dev": true,
|
|
"requires": {
|
|
"loose-envify": "^1.3.1",
|
|
"object-assign": "^4.1.1"
|
|
}
|
|
},
|
|
"prop-types-extra": {
|
|
"version": "1.1.0",
|
|
"resolved": "https://registry.npmjs.org/prop-types-extra/-/prop-types-extra-1.1.0.tgz",
|
|
"integrity": "sha512-QFyuDxvMipmIVKD2TwxLVPzMnO4e5oOf1vr3tJIomL8E7d0lr6phTHd5nkPhFIzTD1idBLLEPeylL9g+rrTzRg==",
|
|
"dev": true,
|
|
"requires": {
|
|
"react-is": "^16.3.2",
|
|
"warning": "^3.0.0"
|
|
}
|
|
},
|
|
"react": {
|
|
"version": "16.7.0",
|
|
"resolved": "https://registry.npmjs.org/react/-/react-16.7.0.tgz",
|
|
"integrity": "sha512-StCz3QY8lxTb5cl2HJxjwLFOXPIFQp+p+hxQfc8WE0QiLfCtIlKj8/+5tjjKm8uSTlAW+fCPaavGFS06V9Ar3A==",
|
|
"dev": true,
|
|
"requires": {
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1",
|
|
"prop-types": "^15.6.2",
|
|
"scheduler": "^0.12.0"
|
|
}
|
|
},
|
|
"react-bootstrap": {
|
|
"version": "0.32.4",
|
|
"resolved": "https://registry.npmjs.org/react-bootstrap/-/react-bootstrap-0.32.4.tgz",
|
|
"integrity": "sha512-xj+JfaPOvnvr3ow0aHC7Y3HaBKZNR1mm361hVxVzVX3fcdJNIrfiodbQ0m9nLBpNxiKG6FTU2lq/SbTDYT2vew==",
|
|
"dev": true,
|
|
"requires": {
|
|
"@babel/runtime-corejs2": "^7.0.0",
|
|
"classnames": "^2.2.5",
|
|
"dom-helpers": "^3.2.0",
|
|
"invariant": "^2.2.4",
|
|
"keycode": "^2.2.0",
|
|
"prop-types": "^15.6.1",
|
|
"prop-types-extra": "^1.0.1",
|
|
"react-overlays": "^0.8.0",
|
|
"react-prop-types": "^0.4.0",
|
|
"react-transition-group": "^2.0.0",
|
|
"uncontrollable": "^5.0.0",
|
|
"warning": "^3.0.0"
|
|
}
|
|
},
|
|
"react-dom": {
|
|
"version": "16.7.0",
|
|
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.7.0.tgz",
|
|
"integrity": "sha512-D0Ufv1ExCAmF38P2Uh1lwpminZFRXEINJe53zRAbm4KPwSyd6DY/uDoS0Blj9jvPpn1+wivKpZYc8aAAN/nAkg==",
|
|
"dev": true,
|
|
"requires": {
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1",
|
|
"prop-types": "^15.6.2",
|
|
"scheduler": "^0.12.0"
|
|
}
|
|
},
|
|
"react-is": {
|
|
"version": "16.7.0",
|
|
"resolved": "https://registry.npmjs.org/react-is/-/react-is-16.7.0.tgz",
|
|
"integrity": "sha512-Z0VRQdF4NPDoI0tsXVMLkJLiwEBa+RP66g0xDHxgxysxSoCUccSten4RTF/UFvZF1dZvZ9Zu1sx+MDXwcOR34g==",
|
|
"dev": true
|
|
},
|
|
"react-lifecycles-compat": {
|
|
"version": "3.0.4",
|
|
"resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz",
|
|
"integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==",
|
|
"dev": true
|
|
},
|
|
"react-overlays": {
|
|
"version": "0.8.3",
|
|
"resolved": "https://registry.npmjs.org/react-overlays/-/react-overlays-0.8.3.tgz",
|
|
"integrity": "sha512-h6GT3jgy90PgctleP39Yu3eK1v9vaJAW73GOA/UbN9dJ7aAN4BTZD6793eI1D5U+ukMk17qiqN/wl3diK1Z5LA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"classnames": "^2.2.5",
|
|
"dom-helpers": "^3.2.1",
|
|
"prop-types": "^15.5.10",
|
|
"prop-types-extra": "^1.0.1",
|
|
"react-transition-group": "^2.2.0",
|
|
"warning": "^3.0.0"
|
|
}
|
|
},
|
|
"react-prop-types": {
|
|
"version": "0.4.0",
|
|
"resolved": "https://registry.npmjs.org/react-prop-types/-/react-prop-types-0.4.0.tgz",
|
|
"integrity": "sha1-+ZsL+0AGkpya8gUefBQUpcdbk9A=",
|
|
"dev": true,
|
|
"requires": {
|
|
"warning": "^3.0.0"
|
|
}
|
|
},
|
|
"react-transition-group": {
|
|
"version": "2.5.3",
|
|
"resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-2.5.3.tgz",
|
|
"integrity": "sha512-2DGFck6h99kLNr8pOFk+z4Soq3iISydwOFeeEVPjTN6+Y01CmvbWmnN02VuTWyFdnRtIDPe+wy2q6Ui8snBPZg==",
|
|
"dev": true,
|
|
"requires": {
|
|
"dom-helpers": "^3.3.1",
|
|
"loose-envify": "^1.4.0",
|
|
"prop-types": "^15.6.2",
|
|
"react-lifecycles-compat": "^3.0.4"
|
|
}
|
|
},
|
|
"regenerator-runtime": {
|
|
"version": "0.12.1",
|
|
"resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.12.1.tgz",
|
|
"integrity": "sha512-odxIc1/vDlo4iZcfXqRYFj0vpXFNoGdKMAUieAlFYO6m/nl5e9KR/beGf41z4a1FI+aQgtjhuaSlDxQ0hmkrHg==",
|
|
"dev": true
|
|
},
|
|
"rimraf": {
|
|
"version": "2.6.3",
|
|
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
|
|
"integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
|
|
"dev": true,
|
|
"requires": {
|
|
"glob": "^7.1.3"
|
|
}
|
|
},
|
|
"scheduler": {
|
|
"version": "0.12.0",
|
|
"resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.12.0.tgz",
|
|
"integrity": "sha512-t7MBR28Akcp4Jm+QoR63XgAi9YgCUmgvDHqf5otgAj4QvdoBE4ImCX0ffehefePPG+aitiYHp0g/mW6s4Tp+dw==",
|
|
"dev": true,
|
|
"requires": {
|
|
"loose-envify": "^1.1.0",
|
|
"object-assign": "^4.1.1"
|
|
}
|
|
},
|
|
"semver": {
|
|
"version": "5.6.0",
|
|
"resolved": "https://registry.npmjs.org/semver/-/semver-5.6.0.tgz",
|
|
"integrity": "sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==",
|
|
"dev": true
|
|
},
|
|
"shebang-command": {
|
|
"version": "1.2.0",
|
|
"resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz",
|
|
"integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=",
|
|
"dev": true,
|
|
"requires": {
|
|
"shebang-regex": "^1.0.0"
|
|
}
|
|
},
|
|
"shebang-regex": {
|
|
"version": "1.0.0",
|
|
"resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz",
|
|
"integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=",
|
|
"dev": true
|
|
},
|
|
"supports-color": {
|
|
"version": "5.5.0",
|
|
"resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
|
|
"integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
|
|
"dev": true,
|
|
"requires": {
|
|
"has-flag": "^3.0.0"
|
|
}
|
|
},
|
|
"uncontrollable": {
|
|
"version": "5.1.0",
|
|
"resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-5.1.0.tgz",
|
|
"integrity": "sha512-5FXYaFANKaafg4IVZXUNtGyzsnYEvqlr9wQ3WpZxFpEUxl29A3H6Q4G1Dnnorvq9TGOGATBApWR4YpLAh+F5hw==",
|
|
"dev": true,
|
|
"requires": {
|
|
"invariant": "^2.2.4"
|
|
}
|
|
},
|
|
"universalify": {
|
|
"version": "0.1.2",
|
|
"resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz",
|
|
"integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==",
|
|
"dev": true
|
|
},
|
|
"warning": {
|
|
"version": "3.0.0",
|
|
"resolved": "https://registry.npmjs.org/warning/-/warning-3.0.0.tgz",
|
|
"integrity": "sha1-MuU3fLVy3kqwR1O9+IIcAe1gW3w=",
|
|
"dev": true,
|
|
"requires": {
|
|
"loose-envify": "^1.0.0"
|
|
}
|
|
},
|
|
"which": {
|
|
"version": "1.3.1",
|
|
"resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz",
|
|
"integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==",
|
|
"dev": true,
|
|
"requires": {
|
|
"isexe": "^2.0.0"
|
|
}
|
|
},
|
|
"wrappy": {
|
|
"version": "1.0.2",
|
|
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
|
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=",
|
|
"dev": true
|
|
},
|
|
"zeppelin-solidity": {
|
|
"version": "1.12.0",
|
|
"resolved": "https://registry.npmjs.org/zeppelin-solidity/-/zeppelin-solidity-1.12.0.tgz",
|
|
"integrity": "sha512-dgjPPnTmx14hAbTeOpTKemDeDCDdwglS0nquOAJG8h5o9zlb43FZafQSrMlIUUSp1EisDZfehrp5loGEYXHZBA==",
|
|
"dev": true
|
|
}
|
|
}
|
|
}
|