-
Notifications
You must be signed in to change notification settings - Fork 212
/
package.json
56 lines (56 loc) · 1.68 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
{
"name": "@aragon/apps-token-manager",
"version": "2.1.0",
"author": "Aragon Association <[email protected]>",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"contributors": [
"Jorge Izquierdo <[email protected]>",
"Pierre Bertet <[email protected]>",
"Oliver Nordbjerg <[email protected]>",
"Brett Sun <[email protected]>"
],
"files": [
"/abi",
"/arapp.json",
"/artifacts",
"/contracts",
"/test"
],
"scripts": {
"console": "buidler console",
"compile": "buidler compile --force",
"build": "cd app && yarn install && yarn build",
"devchain": "buidler node",
"lint": "solium --dir ./contracts",
"test": "buidler test",
"test:gas": "REPORT_GAS=true buidler test --network localhost",
"coverage": "buidler coverage --network coverage",
"abi:extract": "buidler-extract --output abi/ --keys abi"
},
"dependencies": {
"@aragon/minime": "1.0.0",
"@aragon/os": "4.4.0",
"dotenv": "^10.0.0"
},
"devDependencies": {
"@aragon/buidler-aragon": "0.2.12",
"@aragon/contract-helpers-test": "^0.1.0",
"@aragon/hardhat-aragon": "^1.0.0",
"@aragon/hardhat-config": "^1.0.1",
"@nomiclabs/buidler": "^1.4.3",
"@nomiclabs/buidler-etherscan": "^1.3.3",
"@nomiclabs/buidler-ganache": "^1.3.3",
"@nomiclabs/buidler-truffle5": "^1.3.4",
"@nomiclabs/buidler-web3": "^1.3.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"buidler-extract": "^1.0.0",
"buidler-gas-reporter": "^0.1.3",
"chai": "^4.2.0",
"ethers": "^5.4.7",
"hardhat": "^2.6.5",
"solidity-coverage": "^0.7.9",
"solium": "^1.2.5",
"web3": "^1.2.11"
}
}