-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
46 lines (46 loc) · 1.36 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
{
"name": "@1hive/apps-dandelion-voting",
"version": "2.0.0",
"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"
},
"files": [
"/abi",
"/arapp.json",
"/artifacts",
"/contracts",
"/scripts",
"/test"
],
"keywords": [],
"description": "Voting app for dandelion orgs",
"dependencies": {
"@1hive/apps-token-manager": "2.1.0",
"@aragon/minime": "1.0.0",
"@aragon/os": "4.4.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"
}
}