-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 2.21 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
{
"name": "@1inch/paymaster-zksync",
"version": "0.0.1",
"description": "",
"repository": {
"type": "git",
"url": "[email protected]:1inch/paymaster-zksync.git"
},
"license": "MIT",
"dependencies": {
"@1inch/solidity-utils": "2.4.0",
"@matterlabs/signature-checker": "^1.1.1",
"@matterlabs/zksync-contracts": "0.6.1",
"@openzeppelin/contracts": "4.8.3"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "0.6.3",
"@matterlabs/hardhat-zksync-solc": "0.4.0",
"@matterlabs/hardhat-zksync-verify": "0.2.0",
"@nomicfoundation/hardhat-chai-matchers": "1.0.6",
"@nomicfoundation/hardhat-network-helpers": "1.0.8",
"@nomicfoundation/hardhat-verify": "1.0.3",
"@nomiclabs/hardhat-ethers": "2.2.3",
"chai": "4.3.7",
"dotenv": "16.0.3",
"eslint": "8.40.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-n": "15.7.0",
"eslint-plugin-promise": "6.1.1",
"ethers": "5.7.2",
"fs": "0.0.1-security",
"hardhat": "2.14.0",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.28",
"hardhat-gas-reporter": "1.0.9",
"hardhat-tracer": "2.2.2",
"path": "0.12.7",
"rimraf": "5.0.0",
"solc": "0.8.20",
"solhint": "3.4.1",
"solidity-coverage": "0.8.4",
"solidity-docgen": "0.6.0-beta.36",
"zksync-web3": "0.14.3"
},
"scripts": {
"clean": "rimraf artifacts cache coverage coverage.json contracts/hardhat-dependency-compiler artifacts-zk cache-zk",
"coverage": "skip_on_coverage=true hardhat coverage",
"deploy": "hardhat deploy --network",
"deploy:test": "hardhat deploy",
"docify": "yarn hardhat docgen",
"lint": "yarn run lint:js && yarn run lint:sol",
"lint:fix": "yarn run lint:js:fix && yarn run lint:sol:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"lint:sol": "solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:sol:fix": "solhint --max-warnings 0 \"contracts/**/*.sol\" --fix",
"test": "hardhat test --parallel --network zksyncLocal",
"test:ci": "hardhat test --network zksync",
"test:local": "hardhat test --network zksyncLocal",
"test:fork": "hardhat test --network zksyncFork"
}
}