-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 785 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 785 Bytes
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
{
"name": "basic-erc20-token",
"version": "1.0.0",
"description": "Basic ERC20 Token using OpenZeppelin and Hardhat",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"lint": "solhint 'contracts/**/*.sol'",
"format": "prettier --write '**/*.{js,sol,json}'",
"check-format": "prettier --check '**/*.{js,sol,json}'"
},
"keywords": [
"ERC20",
"OpenZeppelin",
"Hardhat",
"Solidity"
],
"author": "knoal",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.2",
"@openzeppelin/contracts": "^5.6.1",
"dotenv": "^17.4.2",
"ethers": "^5.7.2",
"hardhat": "^2.22.3",
"prettier": "^3.8.3",
"prettier-plugin-solidity": "^2.3.1",
"solhint": "^6.2.1"
}
}