-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 2.06 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
{
"name": "@mstable/pooltogether-mstable",
"description": "PoolTogether yield source for mStable",
"version": "1.0.0",
"repository": "https://github.com/mstable/pooltogether-mstable.git",
"author": "mStable <[email protected]>",
"license": "AGPL-3.0-or-later",
"scripts": {
"compile-abis": "typechain --target=ethers-v5 --out-dir types/pooltogether \"?(contracts|build)/!(build-info)/**/+([a-zA-Z0-9]).json\"",
"compile": "yarn hardhat --show-stack-traces compile --force && yarn run compile-abis",
"coverage": "yarn hardhat coverage",
"deploy": "yarn hardhat --config tasks.config.ts --network mainnet deploy-prize-pool",
"flatten": "npx sol-merger \"./contracts/**/*.sol\" ./_flat",
"format": "prettier --config .prettierrc.json --write **/*.ts contracts/**/*.sol",
"format:file": "prettier --config .prettierrc.json --write",
"hint": "solhint \"contracts/**/*.sol\"",
"start-fork": "yarn hardhat node --no-reset --no-deploy",
"task": "yarn hardhat --config tasks.config.ts",
"task:fork": "yarn hardhat --config tasks-fork.config.ts",
"test": "yarn hardhat test",
"test:fork": "yarn hardhat --config hardhat-fork.config.ts test ./test-fork/*.spec.ts"
},
"devDependencies": {
"@mstable/protocol": "mstable/mStable-contracts#2a95259",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "4.1.0",
"@pooltogether/yield-source-interface": "naddison36/yield-source-interface",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.0",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.4",
"chai": "^4.3.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.3.1",
"hardhat": "^2.4.0",
"hardhat-abi-exporter": "2.2.1",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.10",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^10.0.0",
"tsconfig-paths": "^3.9.0",
"typechain": "^5.1.0",
"typescript": "^4.3.4"
}
}