-
Notifications
You must be signed in to change notification settings - Fork 314
/
package.json
112 lines (112 loc) · 4.56 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "liquity",
"private": true,
"workspaces": {
"packages": [
"packages/*"
],
"nohoist": [
"**/web3-eth-abi/@ethersproject/abi",
"**/@graphprotocol/*",
"**/jest*",
"**/@babel/*",
"**/babel*",
"**/react-scripts"
]
},
"engines": {
"node": ">=14.0.0 <17.0.0"
},
"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:*'",
"build:dev-frontend": "yarn workspace @liquity/dev-frontend build",
"deploy": "yarn workspace @liquity/lib-ethers hardhat deploy",
"deploy:chicken-bonds": "yarn --cwd ../ChickenBond deploy-fork compile publish:local",
"watch:chicken-bonds": "yarn --cwd ../ChickenBond watch",
"link:chicken-bonds": "yarn workspace @liquity/dev-frontend link:chicken-bonds",
"unlink:chicken-bonds": "yarn workspace @liquity/dev-frontend unlink:chicken-bonds",
"docs": "run-s 'docs:*'",
"docs:collect-sdk-apis": "node scripts/collect-sdk-apis.js",
"docs:api-documenter": "api-documenter generate -i temp/sdk-apis -o docs/sdk",
"fuzzer": "yarn workspace @liquity/fuzzer fuzzer",
"postinstall": "run-s prepare",
"prepare": "run-s 'prepare:*'",
"prepare:contracts": "yarn workspace @liquity/contracts prepare",
"prepare:lib-base": "yarn workspace @liquity/lib-base prepare",
"prepare:lib-ethers": "yarn workspace @liquity/lib-ethers prepare",
"prepare:lib-react": "yarn workspace @liquity/lib-react prepare",
"prepare:lib-subgraph": "yarn workspace @liquity/lib-subgraph prepare",
"prepare:providers": "yarn workspace @liquity/providers prepare",
"prepare:subgraph": "yarn workspace @liquity/subgraph prepare",
"prepare:docs": "run-s docs",
"rebuild": "run-s prepare build",
"release": "run-s 'release:*'",
"release:delete-dev-deployments": "yarn workspace @liquity/lib-ethers delete-dev-deployments",
"release:lib-base": "yarn workspace @liquity/lib-base semantic-release",
"release:lib-ethers": "yarn workspace @liquity/lib-ethers semantic-release",
"release:lib-react": "yarn workspace @liquity/lib-react semantic-release",
"release:providers": "yarn workspace @liquity/providers semantic-release",
"save-live-version": "yarn workspace @liquity/lib-ethers save-live-version",
"start-dev-chain": "run-s 'start-dev-chain:*'",
"start-dev-chain:openethereum": "node dev-chain/start.js",
"start-dev-chain:prepare-providers": "yarn prepare:providers",
"start-dev-chain:deploy-contracts": "yarn deploy --network dev",
"start-dev-chain:prepare-lib-ethers": "yarn prepare:lib-ethers",
"stop-dev-chain": "docker kill openethereum",
"start-dev-frontend": "yarn workspace @liquity/dev-frontend start",
"start-demo": "run-s 'start-demo:*'",
"start-demo:dev-chain": "yarn start-dev-chain",
"start-demo:dev-frontend": "yarn workspace @liquity/dev-frontend start-demo",
"stop-demo": "yarn stop-dev-chain",
"start-fork": "hardhat --config hardhat.config.mainnet-fork.ts node",
"start-tunnel": "./scripts/start-local-tunnel.sh",
"test": "run-s 'test:*'",
"test:lib-base": "yarn workspace @liquity/lib-base test",
"test:lib-ethers": "yarn workspace @liquity/lib-ethers test",
"test:dev-frontend": "run-s --continue-on-error 'test:dev-frontend:*'",
"test:dev-frontend:start-dev-chain": "yarn start-dev-chain",
"test:dev-frontend:run": "yarn workspace @liquity/dev-frontend test run",
"test:dev-frontend:stop-dev-chain": "yarn stop-dev-chain",
"test-contracts": "yarn workspace @liquity/contracts test",
"test-live": "run-s 'test-live:*'",
"test-live:lib-ethers": "yarn workspace @liquity/lib-ethers test-live",
"coverage": "run-s 'coverage:*'",
"coverage:contracts": "yarn workspace @liquity/contracts coverage"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@microsoft/api-documenter": "^7.12.6",
"fs-extra": "^9.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.1.2",
"semantic-release": "^17.4.2",
"semantic-release-monorepo": "^7.0.4"
},
"packageManager": "yarn@3.5.1"
}