-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 2.41 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
{
"name": "dbilia-nft-marketplace",
"devDependencies": {
"@chainlink/contracts": "^0.1.7",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^2.1.2",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"chai": "^4.2.0",
"dotenv": "^10.0.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.0.0",
"hardhat": "^2.3.0",
"hardhat-gas-reporter": "^1.0.4",
"openzeppelin-solidity": "^4.1.0",
"prettier": "^2.3.2",
"prettier-plugin-solidity": "^1.0.0-beta.15",
"rimraf": "^3.0.2",
"solidity-coverage": "^0.7.17"
},
"scripts": {
"clean": "rimraf ./build",
"build": "npm run clean && npx hardhat clean && npx hardhat compile --config hardhat.config.js",
"copy-to-fe": "",
"test": "npm run build && npx hardhat test --config hardhat.config.js ./test/*.js",
"test-coverage": "npm run build && npx hardhat coverage --config hardhat.config.js",
"test-token": "npm run build && npx hardhat test --config hardhat.config.js ./test/DbiliaToken.js",
"test-marketplace": "npm run build && npx hardhat test --config hardhat.config.js ./test/Marketplace.js",
"test-marketplace-use-eur": "npm run build && npx hardhat test --config hardhat.config.js ./test/MarketplaceUseEUR.js",
"test-wethreceiver": "npm run build && npx hardhat test --config hardhat.config.js ./test/WethReceiver.js",
"deploy-matictestnet": "npx hardhat run --network matictestnet scripts/deploy.js",
"deploy-maticmainnet": "npx hardhat run --network maticmainnet scripts/deploy.js",
"deploy-hardhat": "npx hardhat run --network hardhat scripts/deploy.js",
"deploy-weth-receiver-matictestnet": "npx hardhat run --network matictestnet scripts/deploy_weth_receiver.js",
"deploy-weth-receiver-maticmainnet": "npx hardhat run --network maticmainnet scripts/deploy_weth_receiver.js",
"deploy-weth-receiver-hardhat": "npx hardhat run --network hardhat scripts/deploy_weth_receiver.js",
"create-keystore": "npx hardhat run --network hardhat scripts/create_keystore.js",
"batchmint-matictestnet": "npx hardhat run --network matictestnet scripts/batch_mint.js",
"checksyncing-matictestnet": "npx hardhat run --network matictestnet scripts/check_syncing.js",
"migrate-dbiliatoken-matictestnet": "npx hardhat run --network matictestnet scripts/migrate_dbiliatoken.js",
"migrate-marketplace-matictestnet": "npx hardhat run --network matictestnet scripts/migrate_marketplace.js"
}
}