-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.75 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
{
"name": "@aragon/apps-survey",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"compile": "truffle compile",
"build": "cd app && npm run build",
"apm:prepublish": "npm run compile",
"apm:publish:major": "aragon apm publish major --files app/build/ --prepublish-script apm:prepublish",
"apm:publish:minor": "aragon apm publish minor --files app/build/ --prepublish-script apm:prepublish",
"apm:publish:patch": "aragon apm publish patch --files app/build/ --prepublish-script apm:prepublish",
"lint": "solium --dir ./contracts",
"test": "TRUFFLE_TEST=true npm run ganache-cli:test",
"test:gas": "GAS_REPORTER=true npm test",
"coverage": "SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"console": "truffle console",
"ganache-cli:test": "./node_modules/@aragon/test-helpers/ganache-cli.sh",
"install:frontend": "cd app && npm install",
"abi:extract": "truffle-extract --output abi/ --keys abi",
"prepublishOnly": "truffle compile --all && npm run abi:extract -- --no-compile"
},
"files": [
"/abi",
"/arapp.json",
"/build",
"/contracts",
"/test"
],
"keywords": [],
"author": "Aragon Association <[email protected]>",
"license": "(GPL-3.0-or-later OR AGPL-3.0-or-later)",
"description": "",
"devDependencies": {
"@aragon/apps-vault": "^4.0.0",
"@aragon/cli": "^6.0.0",
"@aragon/test-helpers": "^2.1.0",
"@aragon/truffle-config-v4": "^1.0.1",
"eth-gas-reporter": "^0.2.0",
"ethereumjs-testrpc-sc": "^6.5.1-sc.0",
"ganache-cli": "^6.4.3",
"solidity-coverage": "0.6.2",
"solium": "^1.2.3",
"truffle": "4.1.14",
"truffle-extract": "^1.2.1"
},
"dependencies": {
"@aragon/apps-shared-minime": "1.0.0",
"@aragon/os": "4.2.0"
}
}