generated from ahmedali8/hardhat-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
98 lines (98 loc) · 3.86 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@ahmedali8/foundry-hardhat-template",
"description": "Starter kit for writing Solidity smart contracts in hardhat and foundry environment",
"version": "0.1.0",
"author": {
"name": "ahmedali8",
"url": "https://github.com/ahmedali8"
},
"scripts": {
"chain": "hardhat node --no-deploy --export-all ./generated/chain.json --network hardhat",
"clean": "shx rm -rf ./artifacts ./cache ./cache_hardhat ./coverage ./coverage.json ./types && yarn typechain",
"compile": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat compile",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"test/**/*.ts\" && yarn typechain",
"deploy:hardhat-deploy": "hardhat deploy --export-all ./deployments/hardhat_contracts.json",
"deploy": "yarn deploy:hardhat-deploy --network hardhat",
"deploy:network": "yarn deploy:hardhat-deploy --network",
"fork": "hardhat node --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"lint": "yarn lint:sol && yarn lint:ts && yarn prettier:check",
"lint:sol": "forge fmt --check && yarn solhint \"{script,contracts,test}/**/*.sol\"",
"lint:ts": "eslint --ignore-path ./.eslintignore --ext .js,.ts .",
"networks": "hardhat networks",
"postinstall": "DOTENV_CONFIG_PATH=./.env.example yarn typechain",
"prettier:write": "prettier --write \"**/*.{js,json,md,ts,yml}\"",
"prettier:check": "prettier --check \"**/*.{js,json,md,ts,yml}\"",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true CONTRACT_SIZER=true hardhat test",
"test:trace": "hardhat test --trace",
"test:fulltrace": "hardhat test --fulltrace",
"typechain": "cross-env TS_NODE_TRANSPILE_ONLY=true hardhat typechain",
"verify": "hardhat run scripts/verify.ts --network"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.7",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-ignition": "^0.15.5",
"@nomicfoundation/hardhat-ignition-ethers": "^0.15.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.10",
"@nomicfoundation/ignition-core": "^0.15.5",
"@openzeppelin/contracts": "^5.0.2",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.19",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.8",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"chai": "4.5.0",
"chalk": "4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"ds-test": "github:dapphub/ds-test#e282159d5170298eb2455a6c05280ab5a73a4ef0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"ethers": "6.13.2",
"evm-bn": "^1.1.2",
"forge-std": "github:foundry-rs/forge-std#v1.9.2",
"fs-extra": "^11.2.0",
"hardhat": "2.22.10",
"hardhat-contract-sizer": "2.10.0",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "^0.4.2",
"hardhat-gas-reporter": "2.2.1",
"hardhat-preprocessor": "^0.1.5",
"hardhat-test-suite-generator": "^2.0.0",
"lodash": "^4.17.21",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"shx": "0.3.4",
"solhint": "^5.0.3",
"solidity-coverage": "0.8.13",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.6.2"
},
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"license": "UNLICENSED",
"packageManager": "[email protected]"
}