-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 956 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 956 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
31
32
33
34
35
36
37
{
"name": "solidity-contract-kit",
"version": "1.0.0",
"description": "A collection of clean, tested, well-commented Solidity smart contract templates: ERC-20, ERC-721, staking, vesting, and multisig. Ready to fork and build on.",
"scripts": {
"compile": "hardhat compile",
"test": "hardhat test",
"test:gas": "REPORT_GAS=true hardhat test",
"deploy": "hardhat run scripts/deploy.js",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia",
"node": "hardhat node"
},
"keywords": [
"solidity",
"ethereum",
"smart-contracts",
"erc20",
"erc721",
"nft",
"staking",
"vesting",
"multisig",
"hardhat",
"web3",
"blockchain"
],
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"dotenv": "^16.4.5",
"hardhat": "^2.22.10"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.2",
"solc": "^0.8.24"
}
}