-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 1.22 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
{
"name": "@1hive/apps-issuance",
"version": "1.0.0",
"description": "dynamic issuance app",
"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"
},
"dependencies": {
"@1hive/apps-token-manager": "3.0.4",
"@1hive/funds-manager": "1.0.4",
"@aragon/apps-vault": "4.1.0",
"@aragon/os": "5.0.0-rc.0"
},
"devDependencies": {
"@1hive/hardhat-aragon": "^0.1.0",
"@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",
"ethers": "^5.4.7",
"hardhat": "^2.12.2",
"hardhat-deploy": "^0.11.20",
"hardhat-deploy-tenderly": "^0.2.0",
"hardhat-gas-reporter": "^1.0.4",
"solidity-coverage": "^0.7.16",
"web3": "^1.6.0"
}
}