-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 953 Bytes
/
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
{
"name": "starknet-nft-template",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"create-account": "poetry run npx hardhat run scripts/createAccount.ts",
"deploy-nft": "poetry run npx hardhat run scripts/deployNFT.ts",
"set-metadata": "poetry run npx hardhat run scripts/setMetadata.ts",
"mint-nfts": "poetry run npx hardhat run scripts/mintNFTs.ts",
"add-minter": "poetry run npx hardhat run scripts/grantMinterRole.ts",
"add-burner": "poetry run npx hardhat run scripts/grantBurnerRole.ts",
"setup": "npm install && poetry install && poetry run npx hardhat starknet-compile",
"test": "poetry run npx hardhat test"
},
"devDependencies": {
"@types/mocha": "^10.0.0",
"hardhat": "^2.12.0",
"mocha": "^10.1.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@shardlabs/starknet-hardhat-plugin": "^0.6.6",
"dotenv": "^16.0.3"
}
}