2019-05-06 16:15:58 +03:00
|
|
|
{
|
|
|
|
"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,
|
2019-05-06 16:53:12 +03:00
|
|
|
"devDependencies": {
|
|
|
|
"wsrun": "^3.6.5"
|
|
|
|
},
|
2019-05-06 16:15:58 +03:00
|
|
|
"workspaces": [
|
2019-05-09 13:03:18 +03:00
|
|
|
"oracle",
|
2019-05-15 15:23:29 +03:00
|
|
|
"oracle-e2e",
|
|
|
|
"ui",
|
2019-05-21 10:41:52 +03:00
|
|
|
"ui-e2e",
|
2019-05-15 15:36:58 +03:00
|
|
|
"monitor",
|
|
|
|
"contracts"
|
2019-05-06 16:15:58 +03:00
|
|
|
],
|
|
|
|
"scripts": {
|
2019-05-16 17:12:08 +03:00
|
|
|
"build": "yarn workspace poa-parity-bridge-contracts run compile && yarn workspace ui run build",
|
2019-05-21 10:41:52 +03:00
|
|
|
"lint": "yarn wsrun --exclude oracle-e2e --exclude ui-e2e --exclude poa-parity-bridge-contracts lint",
|
2019-05-21 13:49:46 +03:00
|
|
|
"test": "yarn workspace poa-parity-bridge-contracts run compile && yarn wsrun --exclude monitor --exclude oracle-e2e --exclude ui-e2e test",
|
2019-05-15 14:51:21 +03:00
|
|
|
"ansible-lint": "./deployment/lint.sh",
|
|
|
|
"oracle-e2e": "./oracle-e2e/run-tests.sh",
|
2019-05-21 10:41:52 +03:00
|
|
|
"ui-e2e": "./ui-e2e/run-tests.sh",
|
2019-05-21 10:49:42 +03:00
|
|
|
"clean": "rm -rf ./node_modules ./**/node_modules ./**/**/node_modules ./**/build",
|
2019-05-15 16:03:08 +03:00
|
|
|
"postinstall": "ln -s $(pwd)/node_modules/openzeppelin-solidity/ contracts/node_modules/openzeppelin-solidity"
|
|
|
|
}
|
2019-05-06 16:15:58 +03:00
|
|
|
}
|