-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 3.47 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@daonuts/capped-voting",
"version": "0.0.6",
"description": "Capped, dual-token voting. vote_weight = min(token1, token2)",
"dependencies": {
"@aragon/api": "^2.0.0-beta.6",
"@aragon/api-react": "^2.0.0-beta.6",
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/os": "^4.3.0",
"@aragon/ui": "^1.0.0-alpha.28",
"@daonuts/token": "^0.0.5",
"bases": "^0.2.1",
"bignumber.js": "^9.0.0",
"bn.js": "^4.11.8",
"core-js": "^3.1.4",
"date-fns": "2.0.0-alpha.22",
"ethers": "^4.0.40",
"onecolor": "^3.1.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-linkify": "^0.2.2",
"react-spring": "^5.7.2",
"regenerator-runtime": "^0.13.2",
"rxjs": "^6.5.2",
"styled-components": ">= 2"
},
"keywords": [],
"files": [
"/abi",
"/arapp.json",
"/contracts",
"/scripts",
"/test"
],
"author": "Aragon Association <[email protected]>",
"contributors": [
"Jorge Izquierdo <[email protected]>",
"Pierre Bertet <[email protected]>",
"Oliver Nordbjerg <[email protected]>",
"Brett Sun <[email protected]>",
"Carl Larson <[email protected]>"
],
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"devDependencies": {
"@aragon/apps-shared-migrations": "^1.0.0",
"@aragon/cli": "^6.3.3",
"@aragon/test-helpers": "^1.1.0",
"@babel/core": "^7.0.0-0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.3",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-stage-2": "^6.24.1",
"homedir": "^0.6.0",
"parcel-bundler": "^1.12.4",
"solidity-sha3": "^0.4.1",
"truffle-extract": "^1.2.1"
},
"scripts": {
"start": "aragon run",
"start:template": "npm run start -- --template Template --template-init @ARAGON_ENS --files dist",
"start:http": "aragon run --http localhost:1234 --http-served-from ./dist",
"start:http:template": "npm run start:http -- --template Template --template-init @ARAGON_ENS",
"test": "aragon contracts test",
"compile": "aragon contracts compile",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist && rsync -rtu ./app/public/ ./dist",
"build:app": "parcel build app/index.html -d dist/ --public-url '.' --no-cache",
"build:script": "parcel build app/src/script.js -d dist/ --no-cache",
"build": "npm run sync-assets && npm run build:app && npm run build:script",
"build:gopkg": "solc @aragon=$(pwd)/../../node_modules/@aragon @daonuts=$(pwd)/.. --abi contracts/KarmaCapVoting.sol -o build --allow-paths=$APPS_PATH_ABS && abigen --abi=./build/KarmaCapVoting.abi --pkg=voting --out=go/KarmaCapVoting.go && solc @aragon=$(pwd)/../../node_modules/@aragon @daonuts=$(pwd)/.. --bin contracts/KarmaCapVoting.sol -o build --allow-paths=$APPS_PATH_ABS && abigen --bin=./build/KarmaCapVoting.bin --abi=./build/KarmaCapVoting.abi --pkg=voting --out=go/KarmaCapVoting.go",
"serve": "parcel serve app/index.html",
"publish:patch": "aragon apm publish patch --files dist --skip-confirmation",
"publish:minor": "aragon apm publish minor --files dist --skip-confirmation",
"publish:major": "aragon apm publish major --files dist --skip-confirmation",
"deploy:template": "aragon deploy Template --init @ARAGON_ENS",
"versions": "aragon apm versions",
"clean": "rm -rf build && rm -rf dist",
"size": "node ./scripts/size.js",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
}
}