93347b47a8
* Force ln to mitigate error when postinstall is repeated * Update readme * Using yarn in place of npm run * Changed env order - home first * Removed gh-pages UI deploy * Readme cosmetics * Removed duplicate bridge overview * Update readme * Update repository address * Update readme * Changed NPM to Yarn everywhere * Update readme * Using tokenbridge monorepo in deployment instead of token-bridge * Update ui/README.md Co-Authored-By: Andrew Gross <andogro@gmail.com> * Revert and/or change as per @akolotov explanation * Removed checkWorker3 that was used in legacy bridge-rust-v1-native-to-erc * Update deployment/oracle/README.md Co-Authored-By: Alexander Kolotov <alexandr.kolotov@gmail.com> * Apply suggestions from code review Co-Authored-By: Alexander Kolotov <alexandr.kolotov@gmail.com> * Update root readme and Update sub-repo readmes to point to root monorepository initialization. * Removed obsolete GET /stuckTransfers * Remove stuckTransfers * Use shell instead of unmaintained docker_service module. Update naming in templates.
46 lines
1.6 KiB
JSON
46 lines
1.6 KiB
JSON
{
|
|
"name": "tokenbridge",
|
|
"version": "0.0.1",
|
|
"description": "Monorepository for token bridge",
|
|
"repository": "https://github.com/poanetwork/tokenbridge.git",
|
|
"author": "rzadp <przemek@ethworks.io>",
|
|
"license": "MIT",
|
|
"private": true,
|
|
"devDependencies": {
|
|
"wsrun": "3.6.5",
|
|
"eslint-config-prettier": "3.1.0",
|
|
"eslint": "5.16.0",
|
|
"eslint-config-airbnb": "17.1.0",
|
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
|
"eslint-plugin-import": "2.14.0",
|
|
"eslint-plugin-node": "7.0.1",
|
|
"eslint-plugin-prettier": "2.6.2",
|
|
"eslint-config-react-app": "^4.0.1",
|
|
"eslint-plugin-react": "^7.13.0",
|
|
"eslint-plugin-react-hooks": "^1.6.0",
|
|
"eslint-plugin-flowtype": "^3.8.1",
|
|
"prettier": "1.14.3",
|
|
"mocha": "^5.2.0"
|
|
},
|
|
"workspaces": [
|
|
"oracle",
|
|
"oracle-e2e",
|
|
"ui",
|
|
"ui-e2e",
|
|
"monitor",
|
|
"contracts"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn run compile:contracts && yarn workspace ui run build",
|
|
"lint": "yarn wsrun --exclude oracle-e2e --exclude ui-e2e --exclude poa-parity-bridge-contracts lint",
|
|
"test": "yarn run compile:contracts && yarn wsrun --exclude monitor --exclude oracle-e2e --exclude ui-e2e test",
|
|
"ansible-lint": "./deployment/lint.sh",
|
|
"oracle-e2e": "./oracle-e2e/run-tests.sh",
|
|
"ui-e2e": "./ui-e2e/run-tests.sh",
|
|
"clean": "rm -rf ./node_modules ./**/node_modules ./**/**/node_modules ./**/build",
|
|
"compile:contracts": "yarn workspace poa-parity-bridge-contracts run compile",
|
|
"install:deploy": "cd contracts/deploy && npm install --silent",
|
|
"postinstall": "ln -sf $(pwd)/node_modules/openzeppelin-solidity/ contracts/node_modules/openzeppelin-solidity"
|
|
}
|
|
}
|