-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
20 lines (20 loc) · 943 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"name": "u2u-nft-template",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"build": "graph build",
"prepare:mainnet": "mustache ./config/mainnet.json template.yaml > subgraph.yaml && mustache ./config/mainnet.json ./templateEnum.ts > ./src/const.ts",
"prepare:testnet": "mustache ./config/testnet.json template.yaml > subgraph.yaml && mustache ./config/testnet.json ./templateEnum.ts > ./src/const.ts",
"create-local": "graph create --node http://localhost:8020/ u2u/uphone-nft",
"remove-local": "graph remove --node http://localhost:8020/ u2u/uphone-nft",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 u2u/uphone-nft -l v0.0.1",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.48.0",
"@graphprotocol/graph-ts": "0.29.1",
"mustache": "^4.2.0"
},
"devDependencies": { "matchstick-as": "0.5.0" }
}