-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.35 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 2.35 KB
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
51
{
"name": "sovryn-subgraph",
"version": "0.1.0",
"scripts": {
"create": "graph create DistributedCollective/sovryn-subgraph --node https://api.thegraph.com/deploy/",
"create-local": "graph create DistributedCollective/sovryn-subgraph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy DistributedCollective/sovryn-subgraph --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy DistributedCollective/sovryn-subgraph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"dev": "npm run schema && npm run codegen && npm run deploy-local -- --version-label v0.0.1",
"dev:block": "npm run schema && npm run test-start-block -- -b 1606990 && npm run codegen && npm run deploy-local -- --version-label v0.0.1",
"dev:nodemon": "npx nodemon --exec 'npm run dev'",
"dev:up": "docker compose --env-file .env.dev up -d",
"dev:up:inline": "docker compose --env-file .env.dev up",
"dev:down": "docker compose --env-file .env.dev down",
"lint": "npx prettier --check src/ && eslint . --ext .ts",
"lint:fix": "npx prettier -w src/ && eslint . --ext .ts --fix",
"scaffold": "node utils/scaffoldFromAbi.js",
"cd": "npm run create-local && npm run deploy-local -- --version-label v0.0.1 && node scripts/db_triggers.js",
"prepare": "husky install",
"prepare:RSK:testnet": "sh ./scripts/prepare_testnet.sh && npm run schema",
"prepare:RSK:mainnet": "sh ./scripts/prepare_mainnet.sh && npm run schema",
"test-start-block": "node -r esm utils/startFromLaterBlock.js",
"schema": "sh ./scripts/schema.sh",
"partial-manifest": "node utils/buildPartialManifest.js"
},
"devDependencies": {
"@graphprotocol/graph-cli": "^0.71.0",
"@graphprotocol/graph-ts": "^0.35.1",
"@protofire/subgraph-toolkit": "^0.1.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"commander": "^8.3.0",
"dotenv": "^16.0.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^9.1.0",
"esm": "^3.2.25",
"husky": "^7.0.4",
"js-yaml": "^4.1.0",
"keccak256": "^1.0.6",
"mustache": "^4.2.0",
"nodemon": "^2.0.18",
"prettier": "^3.2.5",
"typescript": "^4.7.4"
},
"dependencies": {
"matchstick-as": "^0.3.0",
"pg": "^8.7.3"
}
}