-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.76 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
{
"name": "polygon-kleros-liquid",
"version": "0.1.0",
"description": "Kleros Courts on Polygon",
"main": "truffle-config.js",
"repository": "git@github.com:kleros/polygon-kleros-liquid.git",
"author": "Kleros",
"license": "MIT",
"files": [
"contracts"
],
"scripts": {
"lint": "yarn run lint:sol && yarn run lint:js",
"lint:js": "eslint .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"fix": "run-p -s fix:*",
"fix:js": "eslint --fix '**/*.js'",
"fix:sol": "prettier --write 'contracts/**/*.sol'",
"test:ganache": "ganache-cli --gasLimit 8000000 --quiet &",
"test": "truffle test",
"cz": "kathari cz",
"build": "truffle compile",
"deploy:mumbai": "truffle migrate --network mumbai",
"deploy:matic": "truffle migrate --network matic"
},
"devDependencies": {
"@openzeppelin/test-helpers": "^0.5.10",
"@zemse/solidity-flattener": "^1.5.1",
"chai": "^4.3.4",
"dotenv": "^8.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.3.0",
"ethers": "^5.1.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"minimetoken": "^0.2.0",
"mocha": "^8.1.1",
"npm-run-all": "^4.1.5",
"prettier": "2.3.0",
"solhint": "^3.3.4",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.5.11",
"standard-version": "^4.4.0",
"truffle": "^5.2.6",
"truffle-hdwallet-provider": "1.0.17",
"truffle-hdwallet-provider-privkey": "1.0.3",
"web3": "^1.3.4"
},
"dependencies": {
"@kleros/kleros": "^0.1.5",
"@kleros/kleros-interaction": "^0.10.0",
"@openzeppelin/truffle-upgrades": "^1.5.0",
"openzeppelin-eth": "2.0.2-standalone"
}
}