-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
69 lines (69 loc) · 2.52 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
{
"name": "@threshold-network/solidity-contracts",
"version": "1.3.0-dev",
"license": "GPL-3.0-or-later",
"files": [
"artifacts/",
"build/contracts/",
"contracts/",
"deploy/",
"export/",
"scripts/",
".openzeppelin/mainnet.json",
"export.json"
],
"scripts": {
"clean": "hardhat clean && rm -rf cache/ deployments/ export/ external/npm export.json",
"build": "hardhat compile",
"deploy": "hardhat deploy --export export.json",
"format": "npm run lint && prettier --check .",
"format:fix": "npm run lint:fix && prettier --write .",
"lint": "npm run lint:js && npm run lint:sol",
"lint:fix": "npm run lint:fix:js && npm run lint:fix:sol",
"lint:fix:js": "eslint . --fix",
"lint:fix:sol": "solhint 'contracts/**/*.sol' --fix",
"lint:js": "eslint . ",
"lint:sol": "solhint 'contracts/**/*.sol'",
"test": "hardhat test",
"test:system": "NODE_ENV=system-test hardhat test ./test/system/*.test.js",
"prepack": "tsc -p tsconfig.export.json && hardhat export-artifacts export/artifacts",
"prepublishOnly": "hardhat prepare-artifacts --network $npm_config_network"
},
"devDependencies": {
"@keep-network/hardhat-helpers": "^0.6.0-pre.8",
"@keep-network/prettier-config-keep": "github:keep-network/prettier-config-keep#d6ec02e",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^1.12.0",
"@tenderly/hardhat-tenderly": ">=1.0.12 <1.1.0",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"chai": "^4.3.4",
"eslint": "^7.27.0",
"eslint-config-keep": "github:keep-network/eslint-config-keep#0c27ade",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.3",
"hardhat": "^2.8.3",
"hardhat-contract-sizer": "^2.5.0",
"hardhat-deploy": "^0.11.37",
"hardhat-gas-reporter": "^1.0.6",
"prettier": "^2.3.2",
"prettier-plugin-sh": "^0.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.14 ",
"solhint": "^3.3.6",
"solhint-config-keep": "github:keep-network/solhint-config-keep",
"solidity-docgen": "^0.6.0-beta.35",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@keep-network/keep-core": ">1.8.1-dev <1.8.1-goerli",
"@openzeppelin/contracts": "~4.5.0",
"@openzeppelin/contracts-upgradeable": "~4.5.2",
"@thesis/solidity-contracts": "github:thesis/solidity-contracts#4985bcf"
},
"peerDependencies": {
"@keep-network/keep-core": ">1.8.1-dev <1.8.1-goerli"
}
}