-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·75 lines (75 loc) · 2.64 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
{
"name": "typescript-hardhat",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/yuichiroaoki/typescript-hardhat",
"author": "yuichiroaoki",
"license": "MIT",
"scripts": {
"build": "yarn clean && yarn compile",
"clean": "npx hardhat clean",
"compile": "npx hardhat compile",
"balance": "npx hardhat balance --account",
"block-number": "npx hardhat block-number",
"deploy": "npx hardhat run scripts/deploy.ts",
"deploy:network": "hardhat run scripts/deploy.ts --network",
"deployBsc": "npx hardhat run scripts/deployBsc.ts --network bscMainnet",
"deployBsc:safe": "npx hardhat run scripts/deploySafeBsc.ts --network bscMainnet",
"deployBsc:common": "npx hardhat run scripts/deployPersistentBsc.ts --network bscMainnet",
"verify:network": "hardhat verify --network",
"test": "npx hardhat test",
"coverage": "npx hardhat coverage",
"account": "npx hardhat accounts",
"postinstall": "husky install"
},
"private": true,
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@cowprotocol/app-data": "^1.2.0",
"@cowprotocol/contracts": "^1.4.0",
"@cowprotocol/cow-sdk": "^4.0.3",
"@nomiclabs/hardhat-etherscan": "^2.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.4.2",
"@openzeppelin/contracts-upgradeable": "^4.3.2",
"@openzeppelin/hardhat-upgrades": "^1.10.0",
"@typechain/ethers-v5": "^7.0.1",
"@typechain/hardhat": "^2.1.2",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"chai": "^4.3.4",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.8.11",
"hardhat-deploy-ethers": "^0.3.0-beta.6",
"hardhat-docgen": "^1.1.1",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.4",
"lint-staged": "^12.2.2",
"prettier": "2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solidity-coverage": "^0.7.21",
"ts-generator": "^0.1.1",
"ts-node": "^10.4.0",
"typechain": "^5.1.1",
"typescript": "^4.5.5"
},
"packageManager": "[email protected]",
"dependencies": {
"@chainlink/contracts": "^0.4.2",
"@safe-global/api-kit": "^1.3.0",
"@safe-global/protocol-kit": "^1.3.0",
"@safe-global/safe-contracts": "^1.4.1",
"@safe-global/safe-core-sdk-types": "^2.0.0",
"@safe-global/safe-ethers-adapters": "^0.2.0-alpha.0",
"@gnosis.pm/zodiac": "^1.0.11",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"chai-bignumber": "^3.0.0"
}
}