-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "music-nft-erc721",
"version": "1.0.0",
"description": "Music NFT Contract",
"main": "index.js",
"scripts": {
"clean": "rm -rf cache artifacts",
"compile": "npx hardhat compile",
"deployTestnet": "npx hardhat run scripts/deploy.js --network energiTestnet",
"deployMainnet": "npx hardhat run scripts/deploy.js --network energiMainnet",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"nft",
"music",
"blockchain",
"energi",
"openzeppelin",
"upgradeable",
"beacon-proxy",
"smart-contract",
"web3",
"SmartNFTs"
],
"author": "SMART NFTs LLC",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-waffle": "^2.0.6",
"@openzeppelin/contracts": "^5.1.0",
"chai": "^5.1.2",
"ethereum-waffle": "^4.0.10",
"ethers": "^5.7.2",
"hardhat": "^2.22.17"
},
"dependencies": {
"axios": "^1.7.9",
"dotenv": "^16.4.7"
}
}