-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
{
"name": "@kleros/tcr",
"version": "2.0.0",
"description": "Arbitrable Permission Lists on Ethereum",
"repository": "https://github.com/kleros/tcr",
"author": "Kleros",
"license": "MIT",
"private": false,
"scripts": {
"test": "hardhat test",
"build": "hardhat compile",
"prepare": "husky install"
},
"files": [
"artifacts/**/*.json",
"contracts/*.sol",
"contracts/view/*.sol",
"contracts/utils/*.sol"
],
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"devDependencies": {
"@kleros/kathari": "^0.23.0",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-truffle5": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.13",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"ganache-cli": "^6.4.4",
"hardhat": "^2.11.1",
"hardhat-gas-reporter": "^1.0.4",
"husky": "^7.0.0",
"jsonfile": "^5.0.0",
"lint-staged": "^11.2.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solhint-plugin-prettier": "^0.0.5",
"standard-version": "^8.0.1",
"truffle": "^5.0.25",
"web3": "~1.5.0",
"web3-utils": "~1.5.0"
},
"dependencies": {
"@kleros/erc-792": "3.0.0",
"bn.js": "^5.2.1",
"hardhat-deploy": "^0.11.20",
"solidity-bytes-utils": "^0.0.8",
"solidity-rlp": "^2.0.1"
},
"volta": {
"node": "14.18.0",
"yarn": "1.22.11"
}
}