-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
51 lines (51 loc) · 1.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
{
"name": "aragon-market",
"version": "1.0.0",
"description": "",
"dependencies": {
"@aragon/apps-shared-minime": "^1.0.1",
"@aragon/apps-token-manager": "2.1.0",
"@aragon/apps-voting": "2.1.0",
"@aragon/os": "^4.2.1"
},
"devDependencies": {
"@aragon/cli": "^5.9.7",
"@aragon/test-helpers": "^2.0.0",
"babel-eslint": "^10.0.2",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-config-standard-react": "^8.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"ethlint": "^1.2.4",
"prettier": "^1.18.2",
"solidity-coverage": "^0.6.2"
},
"scripts": {
"prepublishOnly": "aragon contracts compile",
"start": "npm run start:ipfs",
"start:ipfs": "aragon run",
"start:http": "aragon run --http localhost:8001 --http-served-from ./dist",
"start:ipfs:template": "npm run start:ipfs -- --template Template --template-init @ARAGON_ENS",
"start:http:template": "npm run start:http -- --template Template --template-init @ARAGON_ENS",
"prepare": "cd app && npm install && cd ..",
"start:app": "cd app && npm start && cd ..",
"test": "cross-env TRUFFLE_TEST=true npm run ganache-cli:test",
"compile": "aragon contracts compile",
"build": "cd app && npm run build && cd ..",
"publish:patch": "aragon apm publish patch",
"publish:minor": "aragon apm publish minor",
"publish:major": "aragon apm publish major",
"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",
"ganache-cli:test": "sh ./node_modules/@aragon/test-helpers/ganache-cli.sh"
}
}