-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
70 lines (70 loc) · 2.38 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
{
"name": "gelato-ops",
"version": "1.0.0",
"description": "",
"main": "hardhat.config.js",
"scripts": {
"build": "yarn compile --force && npx tsc",
"compile": "npx hardhat compile",
"compile:zksync": "npx hardhat compile --network zksync",
"verify": "npx hardhat etherscan-verify",
"test": "npx hardhat test",
"format": "prettier --write '*/**/*.{js,sol,json,md,ts}'",
"format:check": "prettier --check '*/**/*.{js,sol,json,md,ts}'",
"lint": "eslint --cache . && yarn lint:sol",
"lint:ts": "eslint -c .eslintrc.json --ext \"**/*.ts\" \"**/*.test.ts\"",
"lint:sol": "solhint 'contracts/**/*.sol'",
"postinstall": "yarn husky install",
"gas-report:vrf": "forge test --match-path ./test/foundry/gas-reporting/VRFGasReport.t.sol --gas-report"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "0.6.3",
"@matterlabs/hardhat-zksync-solc": "1.0.2",
"@matterlabs/hardhat-zksync-verify": "0.2.0",
"@nomicfoundation/hardhat-verify": "1.1.1",
"@nomiclabs/hardhat-ethers": "2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/contracts-upgradeable": "^4.4.2",
"@tsconfig/recommended": "1.0.1",
"@typechain/ethers-v5": "10.2.1",
"@typechain/hardhat": "6.1.6",
"@types/chai": "4.3.0",
"@types/mocha": "9.1.0",
"@types/node": "17.0.21",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"eslint": "8.10.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.7.2",
"hardhat": "2.17.1",
"hardhat-deploy": "0.11.37",
"hardhat-gas-reporter": "^1.0.8",
"husky": "7.0.4",
"lint-staged": "12.3.5",
"prettier": "2.5.1",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solhint": "3.3.7",
"solhint-plugin-prettier": "0.0.5",
"ts-generator": "0.1.1",
"ts-node": "10.7.0",
"typechain": "8.2.0",
"typescript": "4.6.2",
"zksync-web3": "^0.14.3"
},
"author": "",
"license": "ISC",
"dependencies": {
"@gelatonetwork/automate-sdk": "^2.20.3-beta"
},
"lint-staged": {
"*.{js,sol,json,md,ts,yml,yaml}": "prettier --write",
"*.{ts,js}": "eslint -c .eslintrc.json"
},
"packageManager": "[email protected]"
}