-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "@ethsign/",
"version": "1.0.0",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/EthSign"
},
"scripts": {
"prepare": "husky",
"clean": "forge clean && hardhat clean && rm -rf cache_hardhat",
"build": "forge build",
"build:hh": "hardhat compile",
"lint:sol": "forge fmt --check && solhint {script,src,test}/**/*.sol",
"prettier:check": "prettier --check **/*.{json,md,yml,ts} --ignore-path=.prettierignore",
"prettier:write": "prettier --write **/*.{json,md,yml,ts} --ignore-path=.prettierignore",
"test": "forge test",
"test:coverage": "forge coverage",
"test:gas": "forge test --gas-report"
},
"author": "",
"license": "ISC",
"dependencies": {
"@ethsign/sign-protocol-evm": "^1.1.1",
"@openzeppelin/contracts": "5.0.1",
"@openzeppelin/contracts-upgradeable": "5.0.1"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.0.2-dev.0",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/hardhat-upgrades": "^3.0.3",
"@types/node": ">=16.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"dotenv": "^16.4.5",
"ds-test": "github:dapphub/ds-test",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ethers": "^6.11.1",
"forge-std": "github:foundry-rs/forge-std#v1",
"hardhat": "^2.20.1",
"hardhat-deploy": "^0.11.45",
"husky": "9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"solhint": "^4.1.1",
"solidity-docgen": "0.6.0-beta.36",
"ts-node": "^10.9.2",
"typescript": "~5.0.4"
}
}