-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
77 lines (77 loc) · 2.94 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
76
77
{
"name": "@keep-network/random-beacon",
"version": "2.1.0-dev",
"description": "Keep Random Beacon",
"files": [
"artifacts/",
"build/contracts/",
"contracts/",
"!contracts/hardhat-dependency-compiler",
"!**/test/",
"deploy/",
"export/",
"tasks/",
"export.json"
],
"scripts": {
"clean": "hardhat clean && rm -rf cache/ export/ external/npm typechain/ export.json",
"build": "hardhat compile",
"test": "hardhat check-accounts-count && USE_EXTERNAL_DEPLOY=true TEST_USE_STUBS_BEACON=true hardhat test",
"deploy": "hardhat deploy --export export.json",
"deploy:test": "USE_EXTERNAL_DEPLOY=true hardhat deploy",
"format": "npm run lint",
"format:fix": "npm run lint:fix",
"lint": "npm run lint:eslint && npm run lint:sol && npm run lint:config",
"lint:fix": "npm run lint:fix:eslint && npm run lint:fix:sol && npm run lint:config:fix",
"lint:eslint": "eslint .",
"lint:fix:eslint": "eslint . --fix",
"lint:sol": "solhint 'contracts/**/*.sol' && prettier --check '**/*.sol'",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix && prettier --write '**/*.sol'",
"lint:config": "prettier --check '**/*.@(json|yaml)'",
"lint:config:fix": "prettier --write '**/*.@(json|yaml)'",
"prepack": "tsc -p tsconfig.export.json && hardhat export-artifacts --including-no-public-functions export/artifacts",
"prepublishOnly": "hardhat prepare-artifacts --network $npm_config_network"
},
"dependencies": {
"@keep-network/sortition-pools": "^2.0.0-pre.16",
"@openzeppelin/contracts": "4.7.3",
"@thesis/solidity-contracts": "github:thesis/solidity-contracts#4985bcf",
"@threshold-network/solidity-contracts": "development"
},
"devDependencies": {
"@defi-wonderland/smock": "^2.0.7",
"@keep-network/hardhat-helpers": "^0.6.0-pre.15",
"@keep-network/hardhat-local-networks-config": "^0.1.0-pre.0",
"@nomiclabs/hardhat-ethers": "^2.0.6",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.20.0",
"@tenderly/hardhat-tenderly": "1.0.12",
"@thesis-co/eslint-config": "github:thesis/eslint-config#v0.2.0",
"@typechain/ethers-v5": "^9.0.0",
"@typechain/hardhat": "^4.0.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.5",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.4.7",
"hardhat": "^2.10.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-dependency-compiler": "^1.1.2",
"hardhat-deploy": "^0.11.11",
"hardhat-gas-reporter": "^1.0.8",
"prettier": "^2.4.1",
"prettier-plugin-solidity": "^1.0.0-beta.18",
"solhint": "^3.3.6",
"solhint-config-keep": "github:keep-network/solhint-config-keep",
"solidity-docgen": "^0.6.0-beta.35",
"ts-node": "^10.2.1",
"typechain": "^7.0.0",
"typescript": "^4.4.3"
},
"engines": {
"node": ">= 14.0.0"
}
}