-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
68 lines (68 loc) · 4.03 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@aragon/templates-dandelion",
"version": "1.0.0",
"description": "Dandelion template for Aragon organizations",
"author": "Aragon Association <legal@aragon.org>",
"license": "GPL-3.0-or-later",
"files": [
"abi/",
"build/",
"contracts/",
"scripts/",
"truffle.js",
"test/"
],
"scripts": {
"prepublishOnly": "npm run compile && npm run abi:extract -- --no-compile",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"compile": "truffle compile --all",
"lint": "solium --dir ./contracts",
"test": "npm run deploy:rpc && npx truffle test --network rpc",
"test:ganache": "./node_modules/@aragon/templates-shared/scripts/test-ganache.sh",
"test:geth": "npm run docker:run && npm run docker:wait-gas && npm run deploy:devnet && truffle test --network devnet && npm run docker:stop",
"docker:run": "cd ./node_modules/@aragon/templates-shared/; docker-compose -f docker-compose.yml up -d; RESULT=$?; cd -; $(exit $RESULT)",
"docker:stop": "cd ./node_modules/@aragon/templates-shared/; docker-compose down; cd -",
"docker:wait-gas": "truffle exec ./node_modules/@aragon/templates-shared/scripts/sleep-until-gaslimit.js --network devnet 6900000",
"deploy:rpc": "npm run compile && truffle exec ./scripts/deploy.js --network rpc --ens 0x5f6f7e8cc7346a11ca2def8f827b7a0b612c56a1",
"deploy:devnet": "npm run compile && truffle exec ./scripts/deploy.js --network devnet",
"deploy:staging": "npm run compile && truffle exec ./scripts/deploy.js --network rinkeby --ens 0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 --dao-factory 0xf959e8953e2fe03782a7b86a7a5d948cb511ef5d --mini-me-factory 0xac443f983c38c02149ce2ffcff8b7de90dccf77c",
"deploy:rinkeby": "npm run compile && truffle exec ./scripts/deploy.js --network rinkeby --ens 0x98Df287B6C145399Aaa709692c8D308357bC085D --dao-factory 0x89d87269527495ac29648376d4154ba55c4872fc --mini-me-factory 0x6ffeb4038f7f077c4d20eaf1706980caec31e2bf",
"deploy:ropsten": "npm run compile && truffle exec ./scripts/deploy.js --network ropsten --ens 0x6afe2cacee211ea9179992f89dc61ff25c61e923 --dao-factory 0x233c587095d066bafe44b543a719c93ff16423f3 --mini-me-factory 0x1ce5621d386b2801f5600f1dbe29522805b8ac11",
"deploy:mainnet": "npm run compile && truffle exec ./scripts/deploy.js --network mainnet --ens 0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e --dao-factory 0x7378ad1ba8f3c8e64bbb2a04473edd35846360f1 --mini-me-factory 0x909d05f384d0663ed4be59863815ab43b4f347ec",
"publish:rpc": "aragon apm publish major $(npm run deploy:rpc | tail -n 1) --environment default",
"publish:devnet": "aragon apm publish major $(npm run deploy:devnet | tail -n 1) --environment default",
"publish:staging": "aragon apm publish major $(npm run deploy:staging | tail -n 1) --environment staging",
"publish:rinkeby": "aragon apm publish major $(npm run deploy:rinkeby | tail -n 1) --environment rinkeby",
"publish:ropsten": "aragon apm publish major $(npm run deploy:ropsten | tail -n 1) --environment ropsten",
"publish:mainnet": "aragon apm publish major $(npm run deploy:mainnet | tail -n 1) --environment mainnet"
},
"dependencies": {
"@1hive/apps-dandelion-voting": "^2.0.0",
"@1hive/apps-redemptions": "^2.0.0",
"@1hive/apps-time-lock": "^2.0.0",
"@1hive/apps-token-request": "^2.0.0",
"@1hive/oracle-token-balance": "^1.0.0",
"@aragon/apps-agent": "^2.0.0",
"@aragon/apps-finance": "^3.0.0",
"@aragon/apps-shared-minime": "^1.0.0",
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/apps-vault": "^4.1.0",
"@aragon/id": "2.0.3",
"@aragon/os": "4.3.0",
"@aragon/templates-shared": "^1.0.0",
"bn.js": "^5.0.0",
"openzeppelin-solidity": "2.0.1"
},
"devDependencies": {
"@aragon/templates-shared": "^1.0.1",
"@aragon/test-helpers": "^2.0.0",
"eth-ens-namehash": "^2.0.8",
"eth-gas-reporter": "^0.1.1",
"ganache-cli": "^6.0.3",
"solium": "^1.0.4",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1",
"truffle-hdwallet-provider": "0.0.3",
"web3-eth-abi": "^1.2.2"
}
}