This repository has been archived by the owner on Dec 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.58 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
{
"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": {
"@openzeppelin/contracts": "5.0.2",
"@openzeppelin/contracts-upgradeable": "5.0.2"
},
"devDependencies": {
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/hardhat-upgrades": "^3.1.0",
"@types/node": ">=16.0.0",
"@typescript-eslint/eslint-plugin": "^7.11.0",
"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.12.1",
"forge-std": "github:foundry-rs/forge-std#v1",
"hardhat": "^2.22.4",
"hardhat-deploy": "^0.12.4",
"husky": "9.0.11",
"lint-staged": "^15.2.5",
"prettier": "^3.2.5",
"solhint": "^5.0.1",
"solidity-docgen": "0.6.0-beta.36",
"ts-node": "^10.9.2",
"typescript": "~5.0.4"
}
}