-
Notifications
You must be signed in to change notification settings - Fork 88
/
package.json
83 lines (83 loc) · 2.71 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
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@sandbox-smart-contracts/dependency-operator-filter",
"version": "1.0.2",
"description": "Implementation for OpenSea's operator filter",
"files": [
"contracts"
],
"scripts": {
"lint": "eslint --max-warnings 0 \"**/*.{js,ts}\" && solhint --max-warnings 0 \"contracts/**/*.sol\"",
"lint:fix": "eslint --fix \"**/*.{js,ts}\" && solhint --fix \"contracts/**/*.sol\"",
"format": "prettier --check \"**/*.{ts,js,sol,md}\"",
"format:fix": "prettier --write \"**/*.{ts,js,sol,md}\"",
"test": "hardhat test",
"coverage": "hardhat coverage --testfiles 'test/*.ts''test/*.js'",
"hardhat": "hardhat",
"release": "release-it",
"compile": "hardhat compile"
},
"mocha": {
"require": "hardhat/register",
"timeout": 40000,
"_": [
"test/**/*.ts"
]
},
"publishConfig": {
"access": "public"
},
"release-it": {
"git": {
"commitMessage": "chore: @sandbox-smart-contracts/dependency-operator-filter release v${version}",
"tagAnnotation": "@sandbox-smart-contracts/dependency-operator-filter release v${version}",
"tagName": "@sandbox-smart-contracts/dependency-operator-filter@v${version}"
},
"hooks": {
"before:init": [
"yarn lint",
"yarn test"
]
}
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.0",
"@openzeppelin/contracts-upgradeable": "^4.9.0",
"@sandbox-smart-contracts/dependency-metatx": "1.0.1",
"operator-filter-registry": "^1.4.2"
},
"devDependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.3.0-beta.13",
"@nomiclabs/hardhat-etherscan": "^3.1.7",
"@openzeppelin/hardhat-upgrades": "^1.28.0",
"@typechain/ethers-v5": "^10.2.1",
"@typechain/hardhat": "^6.1.6",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^20.1.2",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"chai": "^4.3.7",
"dotenv": "^16.1.4",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"ethers": "^5.7.2",
"hardhat": "^2.14.1",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "1.0.0-beta.11",
"release-it": "^17.2.0",
"solhint": "^3.6.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^8.1.1",
"typescript": "^5.0.4"
}
}