forked from klaytn/klaytn-dex-subgraphs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 853 Bytes
/
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
{
"name": "klaytn-subgraph",
"private": true,
"version": "0.1.0",
"license": "GPL-3.0-or-later",
"workspaces": [
"subgraphs/**/*"
],
"scripts": {
"codegen": "lerna run codegen",
"build": "lerna run build --",
"create-local": "lerna run create-local --",
"remove-local": "lerna run remove-local --",
"deploy-local": "lerna run deploy-local -- --version-label 0.0.1",
"create-remote": "lerna run create-remote -- --node $DEX_GRAPHNODE_RPC_URL",
"remove-remote": "lerna run remove-remote -- --node $DEX_GRAPHNODE_RPC_URL",
"deploy-remote": "lerna run deploy-remote -- --node $DEX_GRAPHNODE_RPC_URL --ipfs $DEX_GRAPHNODE_IPFS_URL --version-label $DEX_VERSION_LABEL"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.29.2",
"@graphprotocol/graph-ts": "^0.26.0",
"lerna": "^4.0.0"
}
}