-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.51 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
{
"name": "commons-upgrade",
"version": "0.0.1",
"main": "index.js",
"license": "GPL-3.0",
"description": "Hardhat script to upgrade a Gardens DAO to commons",
"author": "Commons Swarm",
"module": "dist/esm/index.js",
"devDependencies": {
"@tenderly/hardhat-tenderly": "^1.0.10",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.22",
"@types/ramda": "^0.27.38",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.5.1",
"hardhat-gas-reporter": "^1.0.4",
"node-watch": "^0.7.0",
"openzeppelin-solidity": "2.0.1",
"ora": "^5.4.0",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@1hive/evmcrispr": "0.3.0",
"@aragon/minime": "1.0.0",
"@aragon/os": "4.3.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.2.0",
"@typechain/ethers-v5": "^5.0.0",
"hardhat": "^2.0.11",
"hardhat-deploy": "^0.7.0-beta.46",
"hardhat-typechain": "^0.3.5",
"typechain": "^4.0.2"
},
"scripts": {
"chain": "hardhat node",
"fork": "hardhat node --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"fork:rinkeby": "hardhat node --fork https://eth-rinkeby.alchemyapi.io/v2/zWeBt8YowIcK93EPCcp3862fvKTUsLDO",
"fork:xdai": "hardhat node --fork https://xdai-archive.blockscout.com",
"test": "hardhat test --network hardhat",
"test:xdai": "hardhat test --network xdai",
"test:gas": "REPORT_GAS=true hardhat test",
"compile": "hardhat compile",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"commons-upgrade-rinkeby": "hardhat run scripts/commons-upgrade.ts --network rinkeby",
"commons-upgrade-xdai": "hardhat run scripts/commons-upgrade.ts --network xdai",
"execute-latest-vote-rinkeby": "hardhat run scripts/execute-latest-vote.ts --network rinkeby",
"execute-latest-vote-xdai": "hardhat run scripts/execute-latest-vote.ts --network xdai"
}
}