-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 2.62 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
46
47
48
49
50
{
"name": "spectra-subgraph",
"version": "0.1.0",
"repository": "https://github.com/perspectivefi/spectra-subgraph",
"license": "MIT",
"scripts": {
"create:local": "graph create perspectivefi/spectra-mainnet --node http://127.0.0.1:8020",
"create": "graph create perspectivefi/spectra-mainnet --node https://api.thegraph.com/deploy/",
"codegen": "graph codegen",
"codegen:arbitrum": "graph codegen subgraph.arbitrum.yaml",
"codegen:goerli": "graph codegen subgraph.goerli.yaml",
"codegen:sepolia": "graph codegen subgraph.sepolia.yaml",
"authorize": "graph auth https://api.thegraph.com/deploy/",
"build": "graph build",
"deploy": "graph deploy --studio spectra-mainnet subgraph.yaml",
"deploy:local": "graph deploy perspectivefi/spectra-mainnet --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy:arbitrum": "graph deploy --studio spectra-arbitrum subgraph.arbitrum.yaml",
"deploy:goerli": "graph deploy perspectivefi/spectra-goerli subgraph.goerli.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy:sepolia": "graph deploy --studio spectra-sepolia subgraph.sepolia.yaml",
"deploy:test": "graph deploy matstyler/spectra-subgraph subgraph.goerli.yaml --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"generate-config": "node ./src/scripts/subgraphConfigGenerator.js",
"generate-config:local": "node ./src/scripts/subgraphConfigGenerator.js local",
"generate-config:arbitrum": "node ./src/scripts/subgraphConfigGenerator.js arbitrum",
"generate-config:goerli": "node ./src/scripts/subgraphConfigGenerator.js goerli",
"generate-config:sepolia": "node ./src/scripts/subgraphConfigGenerator.js sepolia",
"test": "graph test",
"prettify": "prettier --write \"./**/*.{js,jsx,json,ts,tsx,css}\""
},
"devDependencies": {
"@chainlink/contracts": "^0.4.1",
"@graphprotocol/graph-cli": "^0.60.0",
"@graphprotocol/graph-ts": "^0.31.0",
"@openzeppelin/contracts": "^4.1.0",
"@trivago/prettier-plugin-sort-imports": "^3.3.0",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"matchstick-as": "^0.5.0",
"prettier": "^2.7.1"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"mustache": "^4.2.0"
},
"resolutions": {
"concat-stream": "1.6.2"
}
}