-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
44 lines (44 loc) · 1.22 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
{
"name": "@mimic-fi/v3-fee-controller",
"version": "0.1.0",
"license": "GPL-3.0",
"files": [
"artifacts/contracts/**/*",
"!artifacts/contracts/test/*",
"contracts/**/*",
"!contracts/test/*"
],
"scripts": {
"build": "yarn compile",
"compile": "hardhat compile",
"lint": "yarn lint:solidity && yarn lint:typescript",
"lint:solidity": "solhint 'contracts/**/*.sol' --config ../../node_modules/solhint-config-mimic/index.js",
"lint:typescript": "eslint . --ext .ts",
"test": "hardhat test",
"prepare": "yarn build"
},
"dependencies": {
"@mimic-fi/helpers": "1.0.0",
"@openzeppelin/contracts": "4.9.3"
},
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/sinon-chai": "^3.2.3",
"chai": "^4.3.7",
"eslint-config-mimic": "^0.0.2",
"ethereum-waffle": "^3.4.4",
"ethers": "~5.6.0",
"hardhat": "^2.14.1",
"hardhat-local-networks-config-plugin": "^0.0.6",
"mocha": "^10.2.0",
"solhint-config-mimic": "^0.0.3",
"ts-node": "^10.9.1",
"typescript": "~4.3.4"
},
"eslintConfig": {
"extends": "eslint-config-mimic"
}
}