-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
72 lines (72 loc) · 2.39 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
{
"name": "@keep-network/sortition-pools",
"version": "2.1.0-pre",
"description": "",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"files": [
"contracts/**/*.sol",
"migrations/scripts"
],
"scripts": {
"build": "hardhat compile",
"ganache": "echo 'GANACHE IS NO LONGER USED; use buidler-vm script instead'",
"test": "hardhat test",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:js": "eslint ${npm_package_config_eslintPaths}",
"lint:fix:js": "eslint --fix ${npm_package_config_eslintPaths}",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier --list-different **/*.sol",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix && prettier --write **/*.sol"
},
"config": {
"eslintPaths": "test/ migrations/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/keep-network/sortition-pools.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/keep-network/sortition-pools/issues"
},
"homepage": "https://github.com/keep-network/sortition-pools#readme",
"dependencies": {
"@openzeppelin/contracts": "^4.3.2",
"@thesis/solidity-contracts": "github:thesis/solidity-contracts#4985bcf"
},
"devDependencies": {
"@keep-network/hardhat-helpers": "^0.2.0-pre",
"@keep-network/hardhat-local-networks-config": "0.1.0-pre.0",
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep#d6ec02e",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-etherscan": "^2.1.6",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/buidler": "^1.4.5",
"@openzeppelin/test-helpers": "^0.5.4",
"@types/chai": "^4.2.20",
"@types/mocha": "^8.2.3",
"@types/node": "^16.0.1",
"bn-chai": "^1.0.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0.3.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.0.32",
"ethlint": "^1.2.5",
"hardhat": "^2.6.4",
"hardhat-deploy": "^0.9.1",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.14",
"solc": "0.8.6",
"solhint": "^3.3.6",
"solhint-config-keep": "github:keep-network/solhint-config-keep",
"truffle": "^5.4.14",
"ts-node": "^10.0.0",
"typescript": "^4.3.5"
}
}