forked from AudiusProject/audius-subgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 2.23 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": "audius-subgraph",
"description": "Subgraph for the Audius Network",
"version": "0.1.0",
"license": "Apache-2.0",
"scripts": {
"create:local": "graph create AudiusProject/audius-subgraph --node http://127.0.0.1:8020",
"create:stage": "graph create audius-infra/audius-network-goerli --node https://api.thegraph.com/deploy/",
"create:prod": "graph create audius-infra/audius-network-mainnet --node https://api.thegraph.com/deploy/",
"codegen": "graph codegen --output-dir src/types/",
"build": "graph build",
"build:mainnet": "graph build --ipfs https://ipfs.network.thegraph.com",
"deploy:local": "graph deploy AudiusProject/audius-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy:stage": "graph deploy audius-infra/audius-network-goerli --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:prod": "graph deploy audius-infra/audius-network-mainnet --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"watch-local": "graph deploy AudiusProject/audius-subgraph --watch --debug --node http://127.0.0.1:8020/ --ipfs http://localhost:5001",
"prepare:dev": "mustache ./config/dev.json subgraph.template.yaml > subgraph.yaml && yarn codegen",
"prepare:stage": "mustache ./config/stage.json subgraph.template.yaml > subgraph.yaml && yarn codegen",
"prepare:prod": "mustache ./config/prod.json subgraph.template.yaml > subgraph.yaml && yarn codegen",
"lint": "prettier '**/*.ts'",
"lint:fix": "prettier --write '**/*.ts'"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.19.0",
"@graphprotocol/graph-ts": "^0.19.0",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"mustache": "^4.1.0",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"truffle": "^5.0.4",
"truffle-contract": "^4.0.5",
"truffle-hdwallet-provider": "^1.0.4"
},
"bugs": {
"url": "https://github.com/AudiusProject/audius-subgraph/issues"
},
"homepage": "https://github.com/AudiusProject/audius-subgraph#readme"
}