aragon-cli now is a global pre-requirement and not direct dependency anymore. The uncountable npm dependencies and npm package.json hacks in the aragon-cli package made it too hard to maintain.
35 lines
1.1 KiB
JSON
35 lines
1.1 KiB
JSON
{
|
|
"name": "kredits-contributor",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"dependencies": {
|
|
"@aragon/os": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@aragon/test-helpers": "^1.1.0",
|
|
"eth-gas-reporter": "^0.2.0",
|
|
"ganache-cli": "^6.4.3",
|
|
"solidity-coverage": "^0.5.11"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run start:aragon:ipfs",
|
|
"start:aragon:ipfs": "aragon run",
|
|
"start:aragon:http": "aragon run --http localhost:8001 --http-served-from ./dist",
|
|
"start:app": "",
|
|
"compile": "aragon contracts compile",
|
|
"sync-assets": "",
|
|
"build:app": "",
|
|
"build:script": "",
|
|
"build": "",
|
|
"publish:patch": "aragon apm publish patch",
|
|
"publish:minor": "aragon apm publish minor",
|
|
"publish:major": "aragon apm publish major",
|
|
"versions": "aragon apm versions",
|
|
"test": "TRUFFLE_TEST=true PORT=7545 npm run ganache-cli:test",
|
|
"test:gas": "GAS_REPORTER=true npm test",
|
|
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
|
|
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh"
|
|
},
|
|
"keywords": []
|
|
}
|