-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 3.4 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
66
67
68
69
70
71
72
73
74
75
{
"name": "@porton/apps-judge",
"version": "5.0.1",
"description": "Mint money by court decisions.",
"dependencies": {
"@aragon/monorepo-js": "file:aragon.js",
"@aragon/os": "^4.3.0",
"@aragon/toolkit": "0.0.2",
"@aragon/ui": "^1.3.1",
"acorn": "^7.1.1",
"axios": "^0.19.2",
"base-path-converter": "^1.0.2",
"copyfiles": "^2.2.0",
"core-js": "^3.6.4",
"go-ipfs": "^0.4.22",
"lerna": "^3.20.2",
"minimist": "^1.2.5",
"npm": "^6.14.5",
"parcel": "^1.12.4",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"recursive-fs": "^1.1.2",
"styled-components": "^4.4.1",
"web3-utils": "^1.2.6"
},
"devDependencies": {
"@aragon/apps-shared-minime": "^1.0.2",
"@aragon/apps-token-manager": "2.1.0",
"@aragon/apps-voting": "2.1.0",
"@aragon/cli": "^7.0.3",
"@aragon/templates-shared": "^1.0.1",
"@aragon/test-helpers": "^2.0.0",
"@aragon/truffle-config-v5": "^1.0.1",
"babel-eslint": "^10.0.2",
"cross-env": "^5.2.0",
"eslint": "^6.0.1",
"eslint-config-prettier": "^6.10.0",
"eslint-config-standard": "^13.0.1",
"eslint-config-standard-react": "^8.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.18.3",
"eslint-plugin-standard": "^4.0.0",
"ethlint": "^1.2.5",
"fs-extra": "^8.1.0",
"ganache-cli": "^6.9.1",
"husky": "^4.2.3",
"prettier": "^1.18.2",
"radspec": "github:vporton/radspec#fromWei.js",
"solidity-coverage": "^0.6.2",
"truffle": "^5.1.14"
},
"scripts": {
"prepare": "cd app && npm install && cd ..",
"start": "npm run start:ipfs",
"start:ipfs": "npm run start:ipfs:template",
"start:http": "aragon run --http localhost:8001 --http-served-from dist",
"start:ipfs:template": "aragon run --files dist --template Template --template-init 0x5d94e3e7aec542ab0f9129b9a7badeb5b3ca0f77 @ARAGON_ENS 0xd526b7aba39cccf76422835e7fd5327b98ad73c9 0xf1f8aac64036cdd399886b1c157b7e3b361093f3 --template-new-instance newTokenAndInstance --template-args MyToken TKN ['\"0xb4124cEB3451635DAcedd11767f004d8a28c6eE7\"'] ['\"1000000000000000000\"'] ['\"500000000000000000\",\"150000000000000000\",\"86400\"'] true",
"start:http:template": "aragon run --http localhost:8001 --http-served-from dist --template Template --template-init 0x5d94e3e7aec542ab0f9129b9a7badeb5b3ca0f77 @ARAGON_ENS 0xd526b7aba39cccf76422835e7fd5327b98ad73c9 0xf1f8aac64036cdd399886b1c157b7e3b361093f3 --template-new-instance newTokenAndInstance --template-args MyToken TKN ['\"0xb4124cEB3451635DAcedd11767f004d8a28c6eE7\"'] ['\"1000000000000000000\"'] ['\"500000000000000000\",\"150000000000000000\",\"86400\"'] true",
"start:app": "cd app && npm start && cd ..",
"build": "cd app && npm run build && cd ..",
"lint": "eslint . & solium --dir ./contracts",
"lint:fix": "eslint . --fix & solium --dir ./contracts --fix",
"compile": "aragon contracts compile",
"test": "cross-env TRUFFLE_TEST=true npm run ganache-cli:test",
"coverage": "cross-env SOLIDITY_COVERAGE=true npm run ganache-cli:test",
"ganache-cli:test": "sh ./node_modules/@aragon/test-helpers/ganache-cli.sh",
"publish:patch": "aragon apm publish patch",
"publish:minor": "aragon apm publish minor",
"publish:major": "aragon apm publish major",
"versions": "aragon apm versions"
}
}