forked from Data-Nexus/NFT-Tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
19 lines (19 loc) · 844 Bytes
/
package.json
File metadata and controls
19 lines (19 loc) · 844 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"name": "nft-sale",
"license": "MIT",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ data-nexus/nft-sale",
"deploy-721": "graph deploy --product hosted-service nftx-project/721-arbitrum-data-nexus",
"deploy-1155": "graph deploy --product hosted-service nftx-project/1155-arbitrum-data-nexus",
"create-local": "graph create --node http://localhost:8020/ data-nexus/nft-sale",
"remove-local": "graph remove --node http://localhost:8020/ data-nexus/nft-sale",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 data-nexus/nft-sale"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.58.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@openzeppelin/contracts": "^4.5.0"
}
}