-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
39 lines (39 loc) · 1.28 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
{
"name": "@1hive/apps-delay",
"version": "1.1.0",
"description": "",
"dependencies": {
"@aragon/os": "^4.2.1",
"@aragon/apps-shared-minime": "^1.0.1",
"@aragon/apps-token-manager": "2.1.0",
"@aragon/apps-voting": "2.1.0"
},
"devDependencies": {
"@aragon/buidler-aragon": "^0.2.7",
"@aragon/contract-test-helpers": "0.0.1",
"@nomiclabs/buidler": "^1.0.2",
"@nomiclabs/buidler-etherscan": "^1.2.0",
"@nomiclabs/buidler-solhint": "^1.2.0",
"@nomiclabs/buidler-truffle5": "^1.1.2",
"@nomiclabs/buidler-web3": "^1.1.2",
"buidler-gas-reporter": "^0.1.3",
"solidity-coverage": "^0.7.0-beta.3",
"web3": "^1.2.6",
"eth-ens-namehash": "^2.0.8"
},
"scripts": {
"postinstall": "npm run compile",
"start": "buidler start",
"console": "buidler console",
"compile": "buidler compile --force",
"devchain": "buidler node",
"build": "cd app && npm run build",
"lint": "buidler check && echo 'Lint complete.'",
"test": "buidler test --network buidlerevm",
"test:gas": "GAS_REPORTER=true npm run test",
"coverage": "SOLIDITY_COVERAGE=true npm run test",
"apm:publish:major": "buidler publish major",
"apm:publish:minor": "buidler publish minor",
"apm:publish:patch": "buidler publish patch"
}
}