-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
71 lines (71 loc) · 2.35 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
{
"name": "@scaffold-eth/hardhat",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@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",
"hardhat-deploy": "^0.7.0-beta.46",
"hardhat-gas-reporter": "^1.0.4",
"openzeppelin-solidity": "2.0.1",
"prettier": "^2.2.1",
"prettier-plugin-solidity": "^1.0.0-beta.5",
"solidity-coverage": "^0.7.16",
"ts-generator": "^0.1.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"dependencies": {
"@1hive/apps-dandelion-voting": "2.0.0",
"@1hive/apps-redemptions": "2.0.1",
"@aragon/apps-agent": "2.1.0",
"@aragon/apps-shared-minime": "^1.0.0",
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/id": "2.0.3",
"@aragon/os": "4.3.0",
"@aragon/templates-shared": "1.0.0",
"@commonsswarm/migration-tools": "https://github.com/commonsswarm/migration-tools/tarball/master",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.1",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "^3.2.0",
"@tenderly/hardhat-tenderly": "^1.0.10",
"@typechain/ethers-v5": "^5.0.0",
"chai": "^4.2.0",
"chalk": "^4.1.0",
"ethereum-waffle": "^3.1.1",
"ethers": "^5.0.17",
"hardhat": "^2.0.11",
"hardhat-typechain": "^0.3.5",
"node-watch": "^0.7.0",
"ora": "^5.4.0",
"qrcode-terminal": "^0.12.0",
"ramda": "^0.27.1",
"typechain": "^4.0.2"
},
"scripts": {
"chain": "hardhat node",
"fork": "hardhat node --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test --network localhost",
"test:gas": "REPORT_GAS=true hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.ts",
"postdeploy": "hardhat run scripts/publish.ts",
"coverage": "hardhat coverage --network coverage --temp artifacts",
"watch": "node scripts/watch.js",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account"
}
}