-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 2.96 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": "@dappnode/dappnode-nft",
"version": "1.0.0",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"start:app": "npm run sync-assets && npm run build:script -- --no-minify && parcel serve app/index.html -p 8001 --out-dir dist/ --no-cache",
"start:aragon:http": "aragon run --app-init-args DAppNodeNFT DAppNodeNFT --http localhost:8001 --http-served-from ./dist",
"lint": "solium --dir ./contracts",
"test": "scripts/test.sh",
"test:gas": "GAS_REPORTER=true npm test",
"coverage": "scripts/coverage.sh",
"compile": "npx aragon contracts compile --all",
"deploy:rpc": "truffle exec scripts/deploy.js --network rpc",
"deploy:rinkeby": "truffle exec scripts/deploy.js --network rinkeby",
"build": "npm run sync-assets && npm run build:app && npm run build:script",
"build:app": "parcel build app/index.html -d dist/ --public-url '.' --no-cache",
"build:script": "parcel build app/script.js -d dist/ --no-cache",
"sync-assets": "copy-aragon-ui-assets -n aragon-ui ./dist",
"publish:rpc": "npm run compile && aragon publish --no-confirm=true \"$(npm run deploy:rpc | tail -n 1)\"",
"publish:rinkeby:patch": "aragon apm publish patch --environment rinkeby --apm.ipfs.rpc http://my.ipfs.dnp.dappnode.eth:5001#default",
"publish:rinkeby:minor": "aragon apm publish minor --environment rinkeby --apm.ipfs.rpc http://my.ipfs.dnp.dappnode.eth:5001#default",
"publish:rinkeby:major": "aragon apm publish major --environment rinkeby --apm.ipfs.rpc http://my.ipfs.dnp.dappnode.eth:5001#default",
"install:rinkeby": "aragon dao install dappnode.aragonid.eth aragonnft.open.aragonpm.eth --environment rinkeby --apm.ipfs.rpc http://my.ipfs.dnp.dappnode.eth:5001#default --app-init-args DAppNode DAN",
"upgrade:rinkeby": "aragon dao upgrade dappnode.aragonid.eth aragonnft.open.aragonpm.eth latest --environment rinkeby --apm.ipfs.rpc http://my.ipfs.dnp.dappnode.eth:5001#default",
"apps:rinkeby": "aragon dao apps dappnode.aragonid.eth --environment rinkeby --apm.ipfs.rpc http://my.ipfs.dnp.dappnode.eth:5001#default"
},
"author": "",
"license": "GPL-3.0",
"devDependencies": {
"@aragon/os": "^4.0.1",
"@aragon/test-helpers": "^1.0.1",
"@aragon/ui": "^0.16.0",
"chai": "^4.2.0",
"chai-bignumber": "^3.0.0",
"coveralls": "^3.0.2",
"eth-gas-reporter": "^0.1.12",
"ethjs-abi": "^0.2.1",
"ganache-cli": "^6.2.3",
"parcel-bundler": "^1.10.1",
"solidity-coverage": "^0.5.11",
"solium": "^1.1.8",
"styled-components": "^3.4.9",
"truffle": "^4.1.14",
"truffle-flattener": "^1.2.10",
"web3-utils": "^1.0.0-beta.37",
"@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",
"react": "^16.3.2",
"react-dom": "^16.3.2"
},
"dependencies": {
"@aragon/client": "^1.1.0"
}
}