-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.31 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "liquity",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/web3-eth-abi/@ethersproject/abi",
"**/@graphprotocol/*",
"**/jest*",
"**/@babel/*",
"**/babel*",
"**/react-scripts",
"**/contracts",
"**/contracts/**"
]
},
"release": {
"extends": "semantic-release-monorepo",
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"@semantic-release/release-notes-generator",
{
"preset": "angular",
"parserOpts": {
"headerPattern": "^(\\w*)(?:\\((.*)\\))?!?: (.*)$"
}
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"build": "run-s build:*",
"fuzzer": "yarn workspace @ebtc/fuzzer fuzzer",
"prepare": "run-s prepare:*",
"prepare:contracts": "yarn workspace @ebtc/contracts prepare",
"rebuild": "run-s prepare build",
"release": "run-s release:*",
"start-fork": "yarn workspace @ebtc/contracts local-fork",
"fork-deployment": "yarn workspace @ebtc/contracts local-fork-deployment",
"start-tunnel": "./scripts/start-local-tunnel.sh",
"test-contracts": "yarn workspace @ebtc/contracts test",
"test-live": "run-s test-live:*",
"coverage": "yarn workspace @ebtc/contracts coverage",
"echidna": "yarn workspace @ebtc/contracts echidna",
"echidna-collateral-token-tester": "yarn workspace @ebtc/contracts echidna-collateral-token-tester",
"echidna-price-feed": "yarn workspace @ebtc/contracts echidna-price-feed",
"prettier": "yarn workspace @ebtc/contracts prettier --write '(contracts|foundry_test)/**/*.sol'",
"prettier-check": "yarn workspace @ebtc/contracts prettier --check '(contracts|foundry_test)/**/*.sol'"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@microsoft/api-documenter": "^7.12.6",
"fs-extra": "^9.1.0",
"hardhat": "^2.9.6",
"solhint": "^3.3.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"semantic-release": "^17.4.2",
"semantic-release-monorepo": "^7.0.4",
"prettier-plugin-solidity": "^1.0.0"
}
}