-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.61 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
{
"name": "delegable-voting",
"version": "0.0.1",
"description": "Voting app clone that gives voters the option to vote themselves or delegate to another address",
"files": [
"/abi",
"/arapp.json",
"/dist",
"/contracts",
"/scripts",
"/test"
],
"author": "Chris Piatt <[email protected]>",
"scripts": {
"postinstall": "yarn compile && yarn build-app",
"build-app": "cd app && npm install && cd ..",
"compile": "buidler compile --force",
"test": "buidler test --network buidlerevm",
"start": "buidler start",
"publish:major": "buidler publish major --verify",
"publish:minor": "buidler publish minor --verify",
"publish:patch": "buidler publish patch --verify",
"publish:rinkeby:major": "buidler publish major --network rinkeby --manager-address 0xa52422BB8c29E4d55243d310fB6BAe793162452e --verify",
"publish:rinkeby:minor": "buidler publish minor --network rinkeby --manager-address 0xa52422BB8c29E4d55243d310fB6BAe793162452e --verify",
"publish:rinkeby:patch": "buidler publish patch --network rinkeby --manager-address 0xa52422BB8c29E4d55243d310fB6BAe793162452e --verify",
"install:frontend": "cd app && npm install"
},
"dependencies": {
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/os": "^4.4.0"
},
"devDependencies": {
"@aragon/buidler-aragon": "^0.2.9",
"@aragon/contract-test-helpers": "0.0.1",
"@aragon/test-helpers": "^2.1.0",
"@nomiclabs/buidler": "^1.3.0",
"@nomiclabs/buidler-etherscan": "^1.3.0",
"@nomiclabs/buidler-truffle5": "^1.3.0",
"@nomiclabs/buidler-web3": "^1.3.0",
"web3": "^1.2.0"
}
}