-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "@1hive/apps-conviction-voting",
"version": "1.1.1",
"description": "",
"files": [
"/arapp.json",
"/artifacts/contracts/**/*.json",
"!/artifacts/contracts/**/*.dbg.json",
"/contracts",
"/test"
],
"dependencies": {
"@1hive/apps-agreement": "0.1.0",
"@1hive/apps-token-manager": "3.0.1",
"@1hive/funds-manager": "1.0.4",
"@aragon/apps-shared-minime": "^1.0.1",
"@aragon/apps-vault": "^4.1.0",
"@aragon/os": "5.0.0-rc.0",
"@aragon/staking": "0.3.2"
},
"devDependencies": {
"@1hive/hardhat-aragon": "^0.0.3",
"@aragon/contract-helpers-test": "^0.1.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-web3": "^2.0.0",
"chai": "^4.2.0",
"dotenv": "^9.0.2",
"ethereumjs-util": "^7.0.4",
"ethers": "^5.4.7",
"hardhat": "^2.6.6",
"hardhat-deploy": "^0.9.3",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.16",
"solium": "^1.2.5",
"web3": "^1.6.0"
},
"scripts": {
"console": "hardhat console",
"compile": "hardhat compile --force",
"chain": "hardhat node",
"build": "cd app && yarn build",
"lint": "solium --dir ./contracts",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test --network localhost",
"coverage": "hardhat coverage",
"publish:major": "hardhat publish major",
"publish:minor": "hardhat publish minor",
"publish:patch": "hardhat publish patch"
}
}