-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
81 lines (81 loc) · 3 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
{
"name": "@ahmedali8/hardhat-js-starterkit",
"description": "Starter kit for writing Solidity smart contracts in hardhat environment",
"version": "0.1.0",
"author": {
"name": "Ahmed Ali Bhatti",
"url": "https://github.com/ahmedali8"
},
"scripts": {
"chain": "hardhat node --network hardhat",
"clean": "shx rm -rf ./artifacts ./cache ./coverage ./coverage.json",
"compile": "hardhat clean && hardhat compile",
"coverage": "hardhat coverage --solcoverjs ./.solcover.js --temp artifacts --testfiles \"./test/**/*.js\"",
"deploy": "hardhat run scripts/deploy.js --network hardhat",
"deploy:network": "hardhat run scripts/deploy.js --network",
"dodoc": "hardhat dodoc",
"fork": "hardhat node --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"lint": "yarn run lint:sol && yarn run lint:js && yarn run prettier:check",
"lint:sol": "solhint --config ./.solhint.json --max-warnings 0 \"contracts/**/*.sol\"",
"lint:js": "eslint --config ./.eslintrc.js --ignore-path ./.eslintignore --ext .js .",
"postinstall": "DOTENV_CONFIG_PATH=./.env.example yarn hardhat compile",
"prettier:write": "prettier --config .prettierrc --write \"**/*.{js,json,md,yml,sol}\"",
"prettier:check": "prettier --config .prettierrc \"**/*.{js,json,md,yml,sol}\"",
"size": "hardhat size-contracts",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true CONTRACT_SIZER=true hardhat test",
"test:trace": "hardhat test --trace",
"test:fulltrace": "hardhat test --fulltrace",
"verify": "hardhat run scripts/verify.js --network"
},
"devDependencies": {
"@ethersproject/bignumber": "^5.7.0",
"@nomicfoundation/hardhat-chai-matchers": "^2.0.1",
"@nomicfoundation/hardhat-ethers": "^3.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.0.3",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@typechain/ethers-v6": "^0.4.0",
"@typechain/hardhat": "^8.0.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.16.19",
"chai": "4.3.7",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"dotenv": "^16.3.1",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"ethers": "6.6.2",
"evm-bn": "^1.1.2",
"fs-extra": "^11.1.1",
"hardhat": "2.16.1",
"hardhat-contract-sizer": "2.10.0",
"hardhat-gas-reporter": "1.0.9",
"lodash": "^4.17.21",
"mocha": "^10.2.0",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.1.3",
"shx": "0.3.4",
"solhint-community": "^3.5.2",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "0.8.4",
"ts-node": "^10.9.1",
"typechain": "^8.2.0",
"typescript": "^5.1.6"
},
"license": "UNLICENSED",
"files": [
"/contracts"
],
"keywords": [
"blockchain",
"ethereum",
"hardhat",
"smart-contracts",
"solidity"
],
"private": true,
"packageManager": "[email protected]"
}