-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.08 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
{
"name": "@skalenetwork/paymaster-interfaces",
"version": "1.0.0",
"description": "Definitions of interfaces needed to integrate with paymaster smart contract",
"repository": "[email protected]:skalenetwork/paymaster-interfaces.git",
"author": "Dmytro Stebaiev <[email protected]>",
"license": "AGPL-3.0",
"files": [
"**/*.sol"
],
"scripts": {
"compile": "npx hardhat clean && npx hardhat compile",
"cleanCompile": "npx hardhat clean && yarn compile",
"cspell": "yarn exec cspell \"**/*\"",
"no-hooks": "git config core.hooksPath .git/hooks",
"hooks": "git config core.hooksPath .githooks || true",
"fullCheck": "yarn lint && yarn slither",
"lint": "npx solhint \"contracts/**/*.sol\"",
"slither": "slither ."
},
"devDependencies": {
"@types/node": "^22.5.5",
"cspell": "^8.8.3",
"hardhat": "^2.22.4",
"solhint": "^5.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"@quant-finance/solidity-datetime": "^2.2.0"
}
}