-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·69 lines (69 loc) · 3.01 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "graph",
"version": "0.1.0",
"scripts": {
"create": "graph create babelfish/rsk-graph --node https://api.thegraph.com/deploy/",
"create-local": "graph create babelfish/rsk-graph --node http://127.0.0.1:8020",
"create-local-testnet": "graph create babelfish/rskTestnet-graph --node http://127.0.0.1:8020",
"codegen": "graph codegen",
"build": "graph build",
"deploy": "graph deploy babelfish/rsk-graph --ipfs https://api.thegraph.com/ipfs/ --node https://api.thegraph.com/deploy/",
"deploy-local": "graph deploy babelfish/rsk-graph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"deploy-local-testnet": "graph deploy babelfish/rskTestnet-graph --ipfs http://localhost:5001 --node http://127.0.0.1:8020",
"dev": "npm run codegen && npm run deploy-local -- --version-label v0.0.1",
"dev:no-build": "npm run codegen && npm run deploy-local",
"dev:nodemon": "node_modules/nodemon/bin/nodemon.js --exec 'npm run dev' --ignore build/ --ignore generated/ --ignore data/ --ext 'ts,json,graphql,yaml'",
"dev:nodemon:no-build": "node_modules/nodemon/bin/nodemon.js --exec 'npm run dev:no-build' --ignore build/ --ignore generated/ --ignore data/ --ext 'ts,json,graphql,yaml'",
"lint": "npx prettier src/",
"lint:fix": "npx prettier -w src/",
"scaffold": "node utils/scaffoldFromAbi.js",
"cd": "npm run create-local && npm run deploy-local -- --version-label",
"cdTestnet": "npm run create-local-testnet && npm run deploy-local-testnet -- --version-label",
"prepare": "husky install",
"prepare:RSK:testnet": "sh ./scripts/prepare_testnet.sh",
"prepare:RSK:mainnet": "sh ./scripts/prepare_mainnet.sh",
"test-start-block": "node -r esm utils/startFromLaterBlock.js",
"dev:up": "docker compose --env-file .env.dev up -d",
"dev:down": "docker compose --env-file .env.dev down"
},
"devDependencies": {
"@graphprotocol/graph-cli": "0.45.2",
"@graphprotocol/graph-ts": "^0.29.0",
"@protofire/subgraph-toolkit": "^0.1.2",
"@typechain/ethers-v5": "^7.0.1",
"@types/jest": "^27.1.5",
"@types/mustache": "^4.1.2",
"@types/node": "^16.4.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"commander": "^8.3.0",
"dotenv": "^16.0.0",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.4",
"jest": "^27.1.5",
"js-yaml": "^4.1.0",
"mustache": "^4.2.0",
"nodemon": "^2.0.15",
"prettier": "^2.6.1",
"ts-jest": "^27.1.5",
"typechain": "^5.1.2"
},
"dependencies": {
"@covalenthq/client-sdk": "^0.5.3",
"axios": "^0.26.1",
"babel-polyfill": "^6.26.0",
"babel-register": "^6.26.0",
"dayjs": "^1.10.7",
"esm": "^3.2.25",
"ethers": "^5.4.1",
"js-yaml": "^4.1.0",
"matchstick-as": "^0.3.0",
"node-logs": "^1.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}