forked from aragon/court-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.94 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "court-subgraph",
"version": "0.0.1",
"scripts": {
"draw-schema": "./scripts/draw-schema.sh",
"build": "graph build",
"build:graph:rpc": "NETWORK=rpc npm run build:graph",
"build:graph:staging": "NETWORK=staging npm run build:graph",
"build:graph:rinkeby": "NETWORK=rinkeby npm run build:graph",
"build:graph:gnosis": "NETWORK=gnosis npm run build:graph",
"build:graph:polygon": "NETWORK=polygon npm run build:graph",
"build:manifest": "./scripts/build-manifest.sh",
"build:manifest:rpc": "NETWORK=rpc npm run build:manifest",
"build:manifest:staging": "NETWORK=staging npm run build:manifest",
"build:manifest:rinkeby": "NETWORK=rinkeby npm run build:manifest",
"build:manifest:goerli": "NETWORK=goerli npm run build:manifest",
"build:manifest:gnosis": "NETWORK=gnosis npm run build:manifest",
"build:manifest:polygon": "NETWORK=polygon npm run build:manifest",
"codegen": "graph codegen -o types",
"codegen:rpc": "NETWORK=rpc npm run codegen",
"codegen:ropsten": "NETWORK=ropsten npm run codegen",
"codegen:staging": "NETWORK=staging npm run codegen",
"codegen:rinkeby": "NETWORK=rinkeby npm run codegen",
"codegen:goerli": "NETWORK=goerli npm run codegen",
"codegen:gnosis": "NETWORK=gnosis npm run codegen",
"codegen:polygon": "NETWORK=polygon npm run codegen",
"deploy": "./scripts/deploy.sh",
"deploy:rpc": "NETWORK=rpc npm run deploy",
"deploy:staging": "NETWORK=staging npm run deploy",
"deploy:rinkeby": "NETWORK=rinkeby npm run deploy",
"deploy:goerli": "NETWORK=goerli npm run deploy",
"deploy:gnosis": "NETWORK=gnosis npm run deploy",
"deploy:polygon": "NETWORK=polygon npm run deploy",
"graph": "graph"
},
"devDependencies": {
"graphqlviz": "^3.1.0"
},
"dependencies": {
"@aragon/court": "1.1.3",
"@aragon/minime": "1.0.0",
"@graphprotocol/graph-cli": "^0.37.2",
"@graphprotocol/graph-ts": "^0.29.3"
}
}