-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.79 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
{
"name": "@pods/yield-contracts",
"version": "1.0.0",
"scripts": {
"compile": "hardhat compile",
"solhint": "./node_modules/.bin/solhint -f table contracts/**/*.sol",
"lint": "yarn lint:ts && yarn solhint",
"lint:ts": "ts-standard",
"test": "hardhat test",
"prettier": "./node_modules/.bin/prettier contracts/**/*.sol",
"prettier:fix": "./node_modules/.bin/prettier --write contracts/**/*.sol",
"slither": "slither . --solc-remaps '@openzeppelin=node_modules/@openzeppelin' --exclude assembly,timestamp,missing-zero-check,external-function,low-level-calls"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.4",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.1",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^12.20.45",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"chai": "^4.3.6",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eth-permit": "^0.2.1",
"ethers": "^5.5.4",
"hardhat": "2.12.0",
"hardhat-abi-exporter": "^2.9.0",
"hardhat-contract-sizer": "^2.5.1",
"hardhat-gas-reporter": "^1.0.7",
"hardhat-spdx-license-identifier": "^2.0.3",
"husky": "^8.0.1",
"prettier": "^2.5.1",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solidity-coverage": "0.8.2",
"ts-node": "^10.5.0",
"ts-standard": "^11.0.0",
"typechain": "^5.2.0",
"typescript": "^4.4.4"
},
"dependencies": {
"@crytic/properties": "https://github.com/crytic/properties.git",
"@openzeppelin/contracts": "4.8.0"
},
"engines": {
"node": ">=16.14.0"
},
"license": "AGPL-3.0-or-later"
}