-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.66 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
{
"name": "solidity-hardhat-template",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/olich97/solidity-hardhat-template.git",
"author": "Oleh Andrushko <olich.me@gmail.com>",
"license": "MIT",
"scripts": {
"clean": "npx hardhat clean",
"test": "npx hardhat test",
"chain": "npx hardhat node",
"coverage": "npx hardhat coverage",
"lint": "yarn dlx @biomejs/biome check . & solhint 'contracts/**/*.sol'",
"lint:fix": "yarn dlx @biomejs/biome format . --write & solhint contracts/**/*.sol --fix",
"compile": "npx hardhat compile",
"deploy:local": "npx hardhat run --network localhost scripts/deploy.ts",
"deploy:sepolia": "npx hardhat run --network sepolia scripts/deploy.ts",
"prepare": "husky install",
"postinstall": "husky install",
"prepack": "pinst --disable",
"postpack": "pinst --enable"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.0",
"@nomiclabs/hardhat-solhint": "^3.1.0",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.11",
"@types/mocha": ">=10.0.6",
"@types/node": ">=22.7.5",
"chai": "^4.4.1",
"ethers": "^6.13.2",
"hardhat-gas-reporter": "^1.0.10",
"hardhat": "^2.22.12",
"husky": "^9.0.11",
"pinst": "^3.0.0",
"solidity-coverage": "^0.8.12",
"ts-node": ">=10.9.2",
"typechain": "^8.3.2",
"typescript": ">=5.6.2"
}
}