-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.34 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.34 KB
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
{
"name": "@stabilitydao/core",
"description": "Smart contracts of Stability protocol",
"license": "MIT",
"homepage": "https://stabilitydao.org",
"version": "0.13.2",
"scripts": {
"build": "hardhat compile",
"console": "hardhat console",
"polygon:deploy": "hardhat --network polygon deploy",
"polygon:verify": "hardhat --network polygon etherscan-verify --solc-input",
"ropsten:deploy": "hardhat --network ropsten deploy",
"ropsten:verify": "hardhat --network ropsten etherscan-verify --solc-input",
"rinkeby:deploy": "hardhat --network rinkeby deploy",
"rinkeby:verify": "hardhat --network rinkeby etherscan-verify --solc-input",
"goerli:deploy": "hardhat --network goerli deploy",
"goerli:verify": "hardhat --network goerli etherscan-verify --solc-input",
"kovan:deploy": "hardhat --network kovan deploy",
"kovan:verify": "hardhat --network kovan etherscan-verify --solc-input",
"mumbai:deploy": "hardhat --network mumbai deploy",
"mumbai:verify": "hardhat --network mumbai etherscan-verify --solc-input",
"clean": "hardhat clean",
"test": "hardhat test",
"lint": "solhint 'contracts/**/*.sol' && prettier --write .",
"coverage": "hardhat typechain && hardhat coverage",
"typechain": "hardhat typechain"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stabilitydao/core.git"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.5.2",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@openzeppelin/test-helpers": "^0.5.15",
"@stabilitydao/addresses": "stabilitydao/addresses",
"@typechain/ethers-v5": "^8.0.5",
"@typechain/hardhat": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.12",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.8",
"hardhat-deploy": "^0.9.4",
"hardhat-gas-reporter": "^1.0.4",
"prettier": "^2.4.1",
"solhint": "^3.3.6",
"solidity-coverage": "^0.7.17",
"ts-node": "^10.4.0",
"typechain": "^6.0.5",
"typescript": "^4.5.4",
"web3": "^1.7.0"
}
}