-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 989 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 989 Bytes
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
{
"scripts": {
"dev": "nodemon scripts/call-functions.ts",
"node": "npx hardhat node",
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy:localhost": "npx hardhat run scripts/deploy.ts --network localhost",
"deploy:goerli": "npx hardhat run scripts/deploy.ts --network goerli",
"deploy:moonbeam": "npx hardhat run scripts/deploy.ts --network moonbeam",
"deploy:uniquerc": "npx hardhat run scripts/deploy.ts --network uniquerc"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"hardhat": "^2.12.0"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@unique-nft/accounts": "^0.3.2",
"@unique-nft/opal-testnet-types": "^0.5.3",
"@unique-nft/quartz-mainnet-types": "^0.6.1",
"@unique-nft/substrate-client": "^0.5.12",
"abi-coder": "^4.1.1",
"dotenv": "^16.0.3",
"ethers": "^5.7.1",
"node-fetch": "^2.6.7",
"prettier": "^2.7.1",
"web3": "^1.8.0"
}
}