-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "nft-marketplace-kryptobirdz",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "NEXT_PUBLIC_BC_NETWORK=local next dev",
"dev-goerli": "NEXT_PUBLIC_BC_NETWORK=goerli next dev",
"dev-mumbai": "NEXT_PUBLIC_BC_NETWORK=mumbai next dev",
"build": "npm run compile; NEXT_PUBLIC_BC_NETWORK=goerli next build",
"start": "next start",
"lint": "next lint",
"test": "hardhat test",
"compile": "hardhat compile",
"test-watch5": "hardhat watch kryptobirdz",
"test-watch4": "hardhat watch project-distributed-wallet",
"test-watch2": "hardhat watch learn-contracts",
"test-watch3": "hardhat watch lock",
"test-watch1": "hardhat watch multisig-wallet",
"test-watch": "hardhat watch dex",
"deploy-local-KryptoBird": "hardhat run ./scripts/deployKryptoBird.js --network localhost",
"deploy-mumbai-KryptoBird": "MUMBAI=true hardhat run ./scripts/deployKryptoBird.js --network matic",
"deploy-goerli-KryptoBird": "hardhat run ./scripts/deployKryptoBird.js --network goerli",
"start-local-blockchain": "hardhat node",
"BADDDtest-watch-learn-contractsNodemon": "nodemon -x 'hardhat test --no-compile test/learn-contracts.js' -w contracts -w test -e sol",
"prettier": "prettier --write 'contracts/**/*.sol'",
"comment":"ALERT: for script, address for the contract needs to be pasted manually.",
"verify-etherscan-kbMarket-": "npx hardhat verify --network goerli 0xe01ab95fCAcd00720A27b3273ED22c3E0289c78D",
"verify-etherscan-NFT": "npx hardhat verify --network goerli 0x4e0c944c56014413A2CDDf010A2F391E05c00330 '0xe01ab95fCAcd00720A27b3273ED22c3E0289c78D'"
},
"dependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.3",
"@nomiclabs/hardhat-ethers": "^2.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.7.2",
"@web3modal/ethereum": "^2.0.0-alpha.4",
"@web3modal/react": "^2.0.0-alpha.4",
"axios": "^0.27.2",
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"ethereum-waffle": "^3.4.4",
"ethers": "^5.6.9",
"hardhat": "^2.10.1",
"hardhat-watcher": "^2.5.0",
"ipfs-http-client": "^57.0.3",
"next": "12.2.3",
"nft.storage": "^7.0.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24",
"react": "18.2.0",
"react-dom": "18.2.0",
"web3": "^1.8.0",
"web3modal": "^1.9.8"
},
"devDependencies": {
"@nomiclabs/hardhat-etherscan": "^3.1.2",
"@types/mocha": "^9.1.1",
"add": "^2.0.6",
"autoprefixer": "^10.4.8",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"postcss": "^8.4.14",
"tailwindcss": "^3.1.7"
}
}