2019-05-06 15:15:58 +02:00
|
|
|
{
|
|
|
|
"name": "tokenbridge",
|
|
|
|
"version": "0.0.1",
|
2019-07-19 09:18:51 +02:00
|
|
|
"description": "Monorepository for TokenBridge",
|
2019-05-06 15:15:58 +02:00
|
|
|
"repository": "https://github.com/poanetwork/tokenbridge.git",
|
|
|
|
"author": "rzadp <przemek@ethworks.io>",
|
|
|
|
"license": "MIT",
|
|
|
|
"private": true,
|
2019-05-06 15:53:12 +02:00
|
|
|
"devDependencies": {
|
2019-05-25 13:27:52 +02:00
|
|
|
"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"
|
2019-05-06 15:53:12 +02:00
|
|
|
},
|
2019-05-06 15:15:58 +02:00
|
|
|
"workspaces": [
|
2019-07-11 15:46:52 +02:00
|
|
|
"commons",
|
2019-05-09 12:03:18 +02:00
|
|
|
"oracle",
|
2019-05-15 14:23:29 +02:00
|
|
|
"oracle-e2e",
|
|
|
|
"ui",
|
2019-05-21 09:41:52 +02:00
|
|
|
"ui-e2e",
|
2019-05-15 14:36:58 +02:00
|
|
|
"monitor",
|
|
|
|
"contracts"
|
2019-05-06 15:15:58 +02:00
|
|
|
],
|
|
|
|
"scripts": {
|
2019-06-13 16:17:24 +02:00
|
|
|
"initialize": "yarn clean && git submodule update --init && yarn install --unsafe-perm --frozen-lockfile && yarn install:deploy && yarn compile:contracts",
|
2019-06-04 09:09:18 +02:00
|
|
|
"build": "yarn workspace ui run build",
|
2019-08-01 09:03:49 +02:00
|
|
|
"lint": "yarn wsrun --exclude token-bridge-contracts lint",
|
2019-06-04 09:09:18 +02:00
|
|
|
"test": "yarn wsrun --exclude monitor --exclude oracle-e2e --exclude ui-e2e test",
|
2019-05-15 13:51:21 +02:00
|
|
|
"oracle-e2e": "./oracle-e2e/run-tests.sh",
|
2019-05-21 09:41:52 +02:00
|
|
|
"ui-e2e": "./ui-e2e/run-tests.sh",
|
2019-05-21 09:49:42 +02:00
|
|
|
"clean": "rm -rf ./node_modules ./**/node_modules ./**/**/node_modules ./**/build",
|
2019-08-01 09:03:49 +02:00
|
|
|
"compile:contracts": "yarn workspace token-bridge-contracts run compile",
|
2019-06-13 16:17:24 +02:00
|
|
|
"install:deploy": "cd contracts/deploy && npm install --unsafe-perm --silent",
|
2019-05-31 14:54:32 +02:00
|
|
|
"postinstall": "ln -sf $(pwd)/node_modules/openzeppelin-solidity/ contracts/node_modules/openzeppelin-solidity"
|
2019-05-15 15:03:08 +02:00
|
|
|
}
|
2019-05-06 15:15:58 +02:00
|
|
|
}
|