-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
29 lines (29 loc) · 1.52 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
{
"name": "tinlake",
"license": "UNLICENSED",
"scripts": {
"codegen": "graph codegen",
"codegen-mainnet": "rm -rf generated && graph codegen ./subgraph-mainnet-production.yaml",
"build": "graph build",
"test": "jest",
"deploy-prod": "rm -rf generated && graph codegen ./subgraph-mainnet-production.yaml && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ $GRAPH_ENDPOINT ./subgraph-mainnet-production.yaml --access-token $GRAPH_ACCESS_TOKEN",
"deploy-staging": "rm -rf generated && graph codegen ./subgraph-kovan-staging.yaml && graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/ $KOVAN_ENDPOINT ./subgraph-kovan-staging.yaml --access-token $GRAPH_ACCESS_TOKEN",
"deploy": "graph deploy --node https://api.thegraph.com/deploy/ --ipfs https://api.thegraph.com/ipfs/",
"create-local": "graph create --node http://localhost:8020/ centrifuge/tinlake",
"remove-local": "graph remove --node http://localhost:8020/ centrifuge/tinlake",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 centrifuge/tinlake",
"format": "prettier --write \"./src/**/*.{ts,tsx}\"",
"check-format": "prettier --check \"./src/**/*.{ts,tsx}\""
},
"dependencies": {
"@graphprotocol/graph-cli": "0.29.2",
"@graphprotocol/graph-ts": "0.26.0"
},
"devDependencies": {
"@types/jest": "^25.1.5",
"jest": "^25.2.7",
"prettier": "1.19.1",
"ts-jest": "^25.3.0",
"typescript": "^3.8.3"
}
}