tokenbridge/package.json

31 lines
1.0 KiB
JSON
Raw Normal View History

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": [
"oracle",
"oracle-e2e",
"ui",
"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",
"lint": "yarn wsrun --exclude oracle-e2e --exclude ui-e2e --exclude poa-parity-bridge-contracts lint",
"test": "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",
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
}