-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.74 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
{
"name": "guild-pin-contract",
"version": "1.3.0",
"description": "",
"scripts": {
"docgen": "hardhat docgen",
"format": "prettier --write .",
"lint-contracts": "solhint --max-warnings 0 'contracts/**/*.sol'",
"lint-ts": "eslint --max-warnings 0 '**/*.{js,ts}'",
"lint": "npm run lint-contracts && npm run lint-ts",
"test": "hardhat test"
},
"license": "MIT",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@matterlabs/hardhat-zksync-deploy": "^1.1.2",
"@matterlabs/hardhat-zksync-solc": "^1.1.0",
"@matterlabs/hardhat-zksync-upgradable": "^1.2.1",
"@matterlabs/hardhat-zksync-verify": "^1.3.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/hardhat-upgrades": "^3.0.2",
"@types/chai": "^4.3.11",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@xyrusworx/hardhat-solidity-json": "^1.0.2",
"chai": "^4.4.1",
"dotenv": "^16.3.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"ethers": "^6.10.0",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^3.2.4",
"prettier-plugin-solidity": "^1.3.1",
"solhint": "^4.1.1",
"solidity-docgen": "^0.6.0-beta.36",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"zksync-ethers": "^6.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5"
}
}