-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
65 lines (65 loc) · 2.38 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
{
"name": "@1hive/apps-token-request",
"version": "2.0.0",
"main": "index.js",
"scripts": {
"start": "npm run start:template",
"start:template": "aragon run --template Template --template-init @ARAGON_ENS --files dist",
"start:http": "npm run start:http:template",
"start:http:template": "aragon run --http localhost:8001 --http-served-from ./dist --template Template --template-init @ARAGON_ENS",
"build": "cd app && npm run build && cd ..",
"prepare": "cd app && npm install && cd ..",
"start:app": "cd app && npm start && cd ..",
"prepublishOnly": "aragon contracts compile",
"publish:patch": "aragon apm publish patch --files dist",
"publish:minor": "aragon apm publish minor --files dist",
"publish:major": "aragon apm publish major --files dist",
"deploy:staging": "npm run publish:major -- --environment staging",
"versions": "aragon apm versions",
"lint": "eslint . & solium --dir ./contracts",
"lint:fix": "eslint . --fix & solium --dir ./contracts --fix",
"coverage": "cross-env SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"coveralls": "cat ./coverage/lcov.info | npx coveralls",
"ganache-cli:test": "sh ./node_modules/@aragon/test-helpers/ganache-cli.sh",
"test": "cross-env TRUFFLE_TEST=true npm run ganache-cli:test"
},
"files": [
"/arapp.json",
"/build",
"/contracts",
"/test"
],
"keywords": [],
"description": "",
"devDependencies": {
"@aragon/apps-shared-minime": "1.0.0",
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/apps-vault": "^4.1.0",
"@aragon/apps-voting": "^2.1.0",
"@aragon/cli": "^6.3.0",
"@aragon/test-helpers": "^2.1.0",
"babel-eslint": "^10.0.1",
"coveralls": "3.0.2",
"cross-env": "^5.2.0",
"eslint": "^5.13.0",
"eslint-config-prettier": "^4.0.0",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"eth-ens-namehash": "^2.0.8",
"ethlint": "^1.2.3",
"ganache-cli": "^6.0.0",
"prettier": "^1.17.1",
"solidity-coverage": "^0.6.2",
"truffle": "^5.0.1"
},
"dependencies": {
"@aragon/apps-token-manager": "^2.1.0",
"@aragon/os": "^4.0.1"
}
}