-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 2.24 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
{
"name": "@kleros/linguo-contracts",
"version": "0.5.0",
"main": "index.js",
"repository": "git@github.com:kleros/linguo-contracts.git",
"author": "Kleros",
"license": "MIT",
"files": [
"artifacts/",
"contracts/",
"deployments/**/*.json"
],
"scripts": {
"build": "run-s -s build:*",
"build:7": "hardhat compile",
"build:4": "hardhat compile --config hardhat.config.4.js",
"clean": "hardhat clean",
"deploy": "hardhat deploy",
"get-deployed-addresses": "hardhat run scripts/getDeployedAddresses.js",
"lint": "run-p -s lint:*",
"lint:js": "eslint .",
"lint:sol": "solhint 'contracts/**/*.sol'",
"fix": "run-p -s fix:*",
"fix:js": "eslint --fix '**/*.js'",
"fix:sol": "prettier --write 'contracts/**/*.sol'",
"b:test": "hardhat test",
"pretest": "run-s -s build",
"test": "mocha -r hardhat/register",
"pretest:watch": "run-s -s build",
"test:watch": "mocha -r hardhat/register --watch-files '**/*.js,**/*.sol' --watch",
"preversion": "yarn test",
"postversion": "git push --tags && yarn publish . --tag $npm_package_version --access public && git push && echo \"Successfully released version $npm_package_version!\"",
"prepare": "husky install"
},
"devDependencies": {
"@kleros/kleros-interaction": "^0.10.0",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-truffle5": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/test-helpers": "^0.5.13",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.14",
"hardhat": "^2.6.2",
"hardhat-deploy": "^0.9.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^8.1.1",
"node-fetch": "^2.6.1",
"npm-run-all": "^4.1.5",
"openzeppelin-solidity": "^1.12.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.17",
"solhint": "^3.2.0",
"solhint-plugin-prettier": "^0.0.5",
"web3": "^1.3.0"
},
"dependencies": {
"@kleros/erc-792": "^7.0.0",
"@kleros/ethereum-libraries": "^7.0.0"
}
}