-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 856 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"private": true,
"scripts": {
"build:contracts": "yarn wsrun -p ${npm_package_config_solPackages} -r build:contracts",
"build": "yarn wsrun -p ${npm_package_config_tsPackages} -r build",
"build:ts": ""
},
"config": {
"solPackages": "@ohdex/contracts @ohdex/typescript-solidity-merkle-tree",
"tsPackages": "@ohdex/contracts @ohdex/deployer @ohdex/multichain @ohdex/relayer @ohdex/bridge-ui @ohdex/typescript-solidity-merkle-tree"
},
"workspaces": {
"packages": [
"packages/bridge-ui",
"packages/contracts",
"packages/deployer",
"packages/multichain",
"packages/relayer",
"packages/ts-merkle-tree"
],
"nohoist": [
"**/ganache-cli/**",
"**/openzeppelin-solidity/**"
]
},
"devDependencies": {
"typescript": "^3.3.3333",
"wsrun": "^3.6.4"
}
}