-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.9 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
{
"name": "@daonuts/harberger",
"version": "0.0.11",
"description": "",
"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.8",
"bases": "^0.2.1",
"bignumber.js": "^9.0.0",
"core-js": "^3.1.4",
"ethers": "^4.0.40",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"regenerator-runtime": "^0.13.2",
"rxjs": "^6.5.2",
"styled-components": ">= 2"
},
"devDependencies": {
"@aragon/apps-shared-migrations": "^1.0.0",
"@aragon/cli": "^6.2.6",
"@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",
"homedir": "^0.6.0",
"parcel-bundler": "^1.12.4",
"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": "rm -rf dist && npm run sync-assets && npm run build:app && npm run build:script",
"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",
"build:gopkg": "solc @daonuts=$(pwd)/node_modules/@daonuts @aragon=$(pwd)/node_modules/@aragon --abi contracts/Harberger.sol -o build --overwrite && abigen --abi=./build/Harberger.abi --pkg=harberger --out=go/Harberger.go && solc @daonuts=$(pwd)/node_modules/@daonuts @aragon=$(pwd)/node_modules/@aragon --bin contracts/Harberger.sol -o build --overwrite && abigen --bin=./build/Harberger.bin --abi=./build/Harberger.abi --pkg=harberger --out=go/Harberger.go",
"versions": "aragon apm versions",
"clean": "rm -rf build && rm -rf dist",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"keywords": [],
"files": [
"/abi",
"/arapp.json",
"/contracts",
"/test"
],
"author": "Carl Larson <[email protected]>",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"browserslist": [
"last 2 Chrome versions"
]
}