-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "metaverse-contracts",
"version": "1.0.0",
"description": "metaverse contracts",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deploy:blast": "npx hardhat run --network \"blast-sepolia\" ./scripts/deploy.ts",
"deploy:blastMain": "npx hardhat run --network \"blast-mainnet\" ./scripts/deploy.ts",
"test": "npx hardhat test"
},
"repository": {
"type": "git",
"url": "git+https://git.exmodules.org/Amir.Nasrollahi/metaverse-contracts.git"
},
"keywords": [
"erc20",
"bep20",
"smart-contracts",
"staking"
],
"author": "k3rn3lpanicc",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/k3rn3lpanicc/erc20token-example/issues"
},
"homepage": "https://github.com/k3rn3lpanicc/erc20token-example#readme",
"devDependencies": {
"@nomicfoundation/hardhat-ethers": "^3.0.4",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.4",
"hardhat": "^2.20.1"
},
"dependencies": {
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.4.5"
}
}