This repository has been archived by the owner on Dec 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.32 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
{
"name": "@pando/apiary",
"version": "0.1.0",
"description": "DAICO application for Aragon DAOs",
"author": "Pando Network <[email protected]>",
"contributors": [
"Billy Rennekamp <[email protected]>",
"Olivier Sarrouy <[email protected]>"
],
"repository": "github:pandonetwork/apiary",
"homepage": "https://github.com/pandonetwork/apiary",
"bugs": "https://github.com/pandonetwork/apiary/issues",
"license": "(GPL-3.0-or-later OR MIT)",
"keywords": [
"aragon",
"dao",
"fundraising",
"daico",
"bancor"
],
"dependencies": {
"@aragon/apps-finance": "^2.1.0",
"@aragon/apps-shared-minime": "^1.0.0",
"@aragon/apps-token-manager": "^2.0.0",
"@aragon/apps-vault": "^4.0.0",
"@aragon/apps-voting": "^2.0.0",
"@aragon/client": "^1.0.0-beta.9",
"@aragon/os": "^4.0.1",
"@aragon/ui": "^0.27.0",
"bancor-contracts": "https://github.com/bancorprotocol/contracts.git#973c9919e146a1b61297632f3253ee1c891462a9",
"components": "^0.1.0",
"qrcode.react": "^0.8.0",
"react": "^16.6.3",
"react-dom": "^16.3.2",
"styled-components": "^3.4.9",
"web3-utils": "^1.0.0-beta.37"
},
"devDependencies": {
"@aragon/cli": "5.2.1",
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"babel-plugin-styled-components": "^1.8.0",
"parcel-bundler": "^1.10.1",
"truffle": "^4.1.14"
},
"scripts": {
"compile": "aragon contracts compile",
"test": "aragon contracts test",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist",
"build:app": "parcel build app/index.html -d dist/ --public-url '.' --no-cache",
"build:script": "parcel build app/script.js -d dist/ --no-cache",
"build": "npm run sync-assets && npm run build:app && npm run build:script",
"publish": "aragon apm publish major",
"start": "npm run start:aragon:ipfs",
"start:aragon:ipfs": "aragon run --kit Kit --kit-init @ARAGON_ENS --environment default ",
"start:aragon:http": "aragon run --http localhost:8001 --http-served-from ./dist --kit Kit --kit-init @ARAGON_ENS --environment default",
"start:app": "npm run sync-assets && npm run build:script -- --no-minify && parcel serve app/index.html -p 8001 --out-dir dist/ --no-cache"
}
}