forked from AlexVorobiov/eip1155-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
31 lines (31 loc) · 1.1 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
30
31
{
"name": "eip1155-bsc-subgraph",
"version": "1.0.0",
"description": "A subgraph to list them all",
"author": "Hadrien Croubois (@Amxx)",
"license": "MIT",
"homepage": "https://github.com/amxx/eip1155-subgraph.git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/amxx/eip1155-subgraph.git"
},
"bugs": {
"url": "https://github.com/amxx/eip1155-subgraph.git/issues"
},
"scripts": {
"build:schema": "concat -o schema.graphql src/schema.gql node_modules/@amxx/graphprotocol-utils/schema.graphql",
"build:codegen": "graph codegen subgraph.yaml",
"build:compile": "graph build subgraph.yaml",
"build:*": "yarn build:schema && yarn build:codegen && yarn build:compile",
"deploy": "graph deploy --debug --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ alexvorobiov/eip1155subgraph"
},
"dependencies": {
"@openzeppelin/contracts": "^3.3.0"
},
"devDependencies": {
"@amxx/graphprotocol-utils": "0.0.6-2",
"@graphprotocol/graph-cli": "^0.19.0",
"@graphprotocol/graph-ts": "^0.19.0",
"concat": "^1.0.3"
}
}