-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
29 lines (29 loc) · 1.15 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
{
"name": "nft-migrator",
"version": "1.0.0",
"description": "A set of tools to automate migrating NFTs from the Uniques pallet to the NFTs pallet",
"author": "jsidorenko",
"license": "MIT",
"private": true,
"dependencies": {
"@aws-sdk/client-s3": "3.383.0",
"@polkadot/api": "10.9.1",
"@polkadot/util-crypto": "12.3.2",
"aws-sdk": "2.1429.0",
"cross-env": "7.0.3",
"dotenv": "16.3.1",
"ipfs-only-hash": "^2.1.0",
"prettier": "3.0.0"
},
"scripts": {
"generate-account": "node ./scripts/generate-account.js",
"generate-sigs:all": "node ./scripts/generate-offchain-sigs.js",
"generate-sigs:unclaimed-only": "cross-env UNCLAIMED=1 node ./scripts/generate-offchain-sigs.js",
"inspect-signer": "node ./scripts/inspect-signer.js",
"upload-to-ipfs": "node ./scripts/upload-to-ipfs.js",
"test-migration": "node ./scripts/test-migration.js",
"inspect-generated-json": "node ./scripts/inspect-generated-json.js",
"store-in-uniques-attributes": "cross-env PALLET=uniques node ./scripts/store-in-attributes.js",
"store-in-nfts-attributes": "cross-env PALLET=nfts node ./scripts/store-in-attributes.js"
}
}