-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.49 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
{
"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",
"test:forge": "forge build && forge test -vv",
"gas-report:forge": "forge test --gas-report",
"test:gas-snapshot": "forge snapshot"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.2",
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-foundry": "^1.1.1",
"@nomicfoundation/hardhat-network-helpers": "^1.0.9",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@openzeppelin/contracts": "^5.0.0",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.10",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.4",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"chai": "4.3.10",
"chalk": "4.1.2",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"ethers": "6.8.1",
"evm-bn": "^1.1.2",
"fs-extra": "^11.1.1",
"hardhat": "2.19.0",
"hardhat-contract-sizer": "2.10.0",
"hardhat-deploy": "^0.11.43",
"hardhat-deploy-ethers": "^0.4.1",
"hardhat-gas-reporter": "1.0.9",
"hardhat-preprocessor": "^0.1.5",
"hardhat-test-suite-generator": "^2.0.0",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"shx": "0.3.4",
"solhint-community": "^3.7.0-rc02",
"solidity-coverage": "0.8.5",
"ts-generator": "^0.1.1",
"ts-node": "^10.9.1",
"typechain": "^8.3.2",
"typescript": "^5.2.2"
},
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"forge",
"foundry",
"smart-contracts",
"solidity",
"template"
],
"license": "UNLICENSED",
"private": true,
"packageManager": "[email protected]"
}