-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.37 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
{
"name": "gelato-dsa-auto-liquidator",
"license": "WTFPL",
"author": {
"name": "Pedro Cruz",
"url": "https://pedrocrvz.me"
},
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.ts\"",
"lint": "yarn run lint:sol && yarn run lint:ts && yarn run prettier:list-different",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:ts": "eslint --config ./.eslintrc --ignore-path ./.eslintignore --ext .js,.ts .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,json,md,sol,ts}\"",
"test": "hardhat test test/integration/*.ts",
"test:gas": "REPORT_GAS=1 hardhat test test/gas/*.ts",
"typechain": "hardhat typechain",
"typechain:deployed": "typechain --target=ethers-v5 --outDir='./types/deployed' './constants/abis/*.json'",
"mainnet:fork": "hardhat node --fork",
"deploy:connectorsAndCondition": "hardhat run --network localhost scripts/deployConnectorsAndCondition.ts"
},
"devDependencies": {
"@gelatonetwork/core": "^1.4.1",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@typechain/ethers-v5": "^4.0.0",
"@types/chai": "^4.2.14",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.9",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"ethereum-waffle": "^3.2.0",
"ethers": "^5.0.21",
"hardhat": "^2.0.3",
"hardhat-deploy": "^0.7.0-beta.30",
"hardhat-deploy-ethers": "^0.3.0-beta.6",
"hardhat-gas-reporter": "^1.0.1",
"hardhat-typechain": "^0.3.3",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"prettier": "^2.2.0",
"prettier-plugin-solidity": "^1.0.0-beta.1",
"solhint": "^3.3.2",
"solhint-plugin-prettier": "0.0.5",
"solidity-coverage": "^0.7.12",
"ts-generator": "^0.1.1",
"ts-node": "^9.0.0",
"typechain": "^4.0.0",
"typescript": "^4.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{sol}": "npm run lint:sol",
"*.{ts,js}": "npm run lint:ts",
"*.{ts,js,json,sol}": "npm run prettier"
}
}