Update package.json to add the deploy script & remove package-lock.json from the repository
This commit is contained in:
parent
a377fb9dd3
commit
2ae2dbd354
|
|
@ -3,4 +3,7 @@ node_modules
|
||||||
|
|
||||||
# hardhat
|
# hardhat
|
||||||
cache
|
cache
|
||||||
artifacts
|
artifacts
|
||||||
|
|
||||||
|
# NPM
|
||||||
|
package-lock.json
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -6,7 +6,8 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "hardhat test",
|
"test": "hardhat test",
|
||||||
"format": "prettier --write \"./**/*.{js,ts,sol}\"",
|
"format": "prettier --write \"./**/*.{js,ts,sol}\"",
|
||||||
"deploy:mumbai": "node scripts/deploy.js --network polygon_mumbai --contract FleekERC721 --param \"Fleek Sites Test\" --param FST"
|
"deploy:mumbai": "node scripts/deploy.js --network polygon_mumbai --contract FleekERC721 --param \"Fleek Sites Test\" --param FST",
|
||||||
|
"compile": "hardhat compile"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue