forked from lazysuperheroes/hedera-SC-minter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.26 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.26 KB
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
{
"name": "hedera-sc-minter",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx hardhat test",
"test-ft": "npx hardhat test test/FungibleTokenCreator.test.js",
"test-nft": "npx hardhat test test/MinterContract.test.js",
"test-sbt": "npx hardhat test test/SoulboundMinter.test.js",
"deploy-ft": "npx hardhat run scripts/deployment/deploy-FTC.js",
"deploy-nft": "npx hardhat run scripts/deployment/deploy-MC.js",
"deploy-sbt": "npx hardhat run scripts/deployment/deploy-SBT.js",
"logs": "node scripts/getContractLogs.js",
"solhint": "solhint -f table contracts/**/*.sol"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@hashgraph/sdk": "^2.19.0",
"abi-decoder": "^2.4.0",
"axios": "^1.2.0",
"dotenv": "^16.0.3",
"ethers": "^6.13.1",
"hardhat-contract-sizer": "^2.10.0",
"readline-sync": "^1.4.10"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^4.9.6",
"chai": "^4.4.1",
"eslint": "^9.5.0",
"globals": "^15.6.0",
"hardhat": "^2.12.3",
"solhint": "^5.0.1"
}
}