-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
35 lines (35 loc) · 1.53 KB
/
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
31
32
33
34
35
{
"private": true,
"name": "@darwinia/bridge",
"workspaces": [
"packages/*",
"contracts/*"
],
"version": "1.0.0",
"repository": "https://github.com/darwinia-network/darwinia-bridge-sol.git",
"author": "Darwinia dev",
"license": "MIT",
"scripts": {
"ci": "wsrun -r --stages --fast-exit --exclude-missing -p $PKG -c ci",
"mv-reporter": "wsrun -r --stages --fast-exit --exclude-missing -p $PKG -c mv-reporter",
"merge": "npx hardhat gas-reporter:merge 'gasReporterOutput*.json'",
"wsrun": "wsrun",
"build": "wsrun -r --stages --fast-exit --exclude-missing -p $PKG -c build",
"test": "wsrun -r --stages --fast-exit --exclude-missing -p $PKG -c test",
"codechecks": "wsrun -r --stages --fast-exit --exclude-missing -p $PKG -c codechecks",
"build:contracts": "wsrun -p ${npm_package_config_contractsPackages} --fast-exit -r --stages --exclude-missing -c build",
"clean": "wsrun --fast-exit -r --parallel --exclude-missing -p $PKG -c clean",
"clean:contracts": "wsrun --fast-exit -r --parallel --exclude-missing -p ${npm_package_config_contractsPackages} -c clean",
"rebuild": "run-s clean build"
},
"config": {
"contractsPackages": "@darwinia/contracts-bridge @darwinia/contracts-tokens @darwinia/contracts-util @darwinia/contracts-verify @darwinia/contracts-periphery",
"nonContractsPackages": "@darwinia/addresses @darwinia/assets"
},
"devDependencies": {
"@codechecks/client": "^0.1.12",
"hardhat-gas-reporter": "^1.0.6",
"npm-run-all": "^4.1.5",
"wsrun": "^5.2.4"
}
}