2019-05-06 16:15:58 +03:00
|
|
|
{
|
|
|
|
"name": "tokenbridge",
|
|
|
|
"version": "0.0.1",
|
2019-07-19 10:18:51 +03:00
|
|
|
"description": "Monorepository for TokenBridge",
|
2019-05-06 16:15:58 +03:00
|
|
|
"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": {
|
2019-05-25 14:27:52 +03:00
|
|
|
"eslint": "5.16.0",
|
|
|
|
"eslint-config-airbnb": "17.1.0",
|
2020-05-08 20:14:06 +03:00
|
|
|
"eslint-config-prettier": "3.1.0",
|
|
|
|
"eslint-plugin-flowtype": "^3.8.1",
|
2019-05-25 14:27:52 +03:00
|
|
|
"eslint-plugin-jsx-a11y": "^6.2.1",
|
|
|
|
"eslint-plugin-node": "7.0.1",
|
|
|
|
"eslint-plugin-prettier": "2.6.2",
|
|
|
|
"eslint-plugin-react": "^7.13.0",
|
|
|
|
"eslint-plugin-react-hooks": "^1.6.0",
|
2020-05-08 20:14:06 +03:00
|
|
|
"mocha": "^5.2.0",
|
2019-05-25 14:27:52 +03:00
|
|
|
"prettier": "1.14.3",
|
2020-05-08 20:14:06 +03:00
|
|
|
"wsrun": "3.6.5"
|
2019-05-06 16:53:12 +03:00
|
|
|
},
|
2019-05-06 16:15:58 +03:00
|
|
|
"workspaces": [
|
2019-07-11 16:46:52 +03:00
|
|
|
"commons",
|
2019-05-09 13:03:18 +03:00
|
|
|
"oracle",
|
2019-05-15 15:23:29 +03:00
|
|
|
"oracle-e2e",
|
2019-05-15 15:36:58 +03:00
|
|
|
"monitor",
|
2019-08-27 17:26:49 +03:00
|
|
|
"monitor-e2e",
|
2020-05-04 23:35:46 +03:00
|
|
|
"contracts",
|
2020-06-04 19:15:39 +03:00
|
|
|
"burner-wallet-plugin",
|
2020-07-29 13:30:36 +03:00
|
|
|
"alm",
|
|
|
|
"alm-e2e"
|
2019-05-06 16:15:58 +03:00
|
|
|
],
|
|
|
|
"scripts": {
|
2019-06-13 17:17:24 +03:00
|
|
|
"initialize": "yarn clean && git submodule update --init && yarn install --unsafe-perm --frozen-lockfile && yarn install:deploy && yarn compile:contracts",
|
2021-04-16 12:31:12 +03:00
|
|
|
"build": "yarn build:alm && yarn build:plugin",
|
2020-06-04 19:15:39 +03:00
|
|
|
"build:alm": "yarn workspace alm run build",
|
2020-05-04 23:35:46 +03:00
|
|
|
"build:plugin": "yarn workspace burner-wallet-plugin run build",
|
2020-10-31 21:02:56 +03:00
|
|
|
"lint": "yarn wsrun --exclude tokenbridge-contracts lint",
|
2021-04-16 12:31:12 +03:00
|
|
|
"test": "yarn wsrun --exclude oracle-e2e --exclude monitor-e2e --exclude alm-e2e test",
|
2019-05-15 14:51:21 +03:00
|
|
|
"oracle-e2e": "./oracle-e2e/run-tests.sh",
|
2020-07-14 17:53:05 +03:00
|
|
|
"monitor-e2e": "./monitor-e2e/run-tests.sh",
|
2020-07-29 13:30:36 +03:00
|
|
|
"alm-e2e": "./alm-e2e/run-tests.sh",
|
2020-05-04 23:35:46 +03:00
|
|
|
"clean": "rm -rf ./node_modules ./**/node_modules ./**/**/node_modules ./**/build ./**/**/dist",
|
2020-10-31 21:02:56 +03:00
|
|
|
"compile:contracts": "yarn workspace tokenbridge-contracts run compile",
|
2019-06-13 17:17:24 +03:00
|
|
|
"install:deploy": "cd contracts/deploy && npm install --unsafe-perm --silent",
|
2020-07-14 17:53:05 +03:00
|
|
|
"postinstall": "test -n \"$NOYARNPOSTINSTALL\" || ln -sf $(pwd)/node_modules/openzeppelin-solidity/ contracts/node_modules/openzeppelin-solidity"
|
2019-05-15 16:03:08 +03:00
|
|
|
}
|
2019-05-06 16:15:58 +03:00
|
|
|
}
|