forked from provable-things/dandelion-voting-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.53 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": "pnetwork-voting-app",
"version": "1.0.0",
"scripts": {
"postinstall": "npx patch-package && npm run compile",
"start": "buidler start",
"console": "buidler console",
"compile": "buidler compile --force",
"devchain": "buidler node",
"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/client": "^1.1.1",
"@aragon/minime": "1.0.0",
"@aragon/os": "4.4.0",
"dotenv": "^8.2.0",
"hardhat": "^2.13.0"
},
"devDependencies": {
"@aragon/buidler-aragon": "^0.2.7",
"@aragon/contract-test-helpers": "0.0.1",
"@nomiclabs/buidler": "^1.0.2",
"@nomiclabs/buidler-etherscan": "^1.3.3",
"@nomiclabs/buidler-solhint": "^1.2.0",
"@nomiclabs/buidler-truffle5": "^1.1.2",
"@nomiclabs/buidler-web3": "^1.1.2",
"@nomiclabs/hardhat-truffle5": "^2.0.7",
"@nomiclabs/hardhat-web3": "^2.0.0",
"buidler-gas-reporter": "^0.1.3",
"patch-package": "^6.5.0",
"solidity-coverage": "^0.7.0-beta.3",
"web3": "^1.2.6"
}
}