-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
33 lines (33 loc) · 1.54 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
{
"name": "APE",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint . **/*.ts --fix",
"build": "run-s codegen && graph build",
"buildonly": "graph build",
"codegen": "graph codegen --output-dir src/types/",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ APE",
"create-local": "graph create --node http://localhost:8020/ APE",
"remove-local": "graph remove --node http://localhost:8020/ APE",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://18.208.209.235:5001 APE",
"deploy-local-ipfs-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 APE",
"deploy-local-ipfs-aws": "graph deploy --node http://localhost:8020/ --ipfs http://18.208.209.235:5001 APE",
"create-aws": "graph create --node http://54.159.99.140:8020 APE",
"remove-aws": "graph remove --node http://54.159.99.140:8020 APE",
"deploy-aws": "graph deploy --node http://54.159.99.140:8020 --ipfs http://18.208.209.235:5001 APE",
"create-aws-base": "graph create --node http://54.167.206.116:8020 APE",
"remove-aws-base": "graph remove --node http://54.167.206.116:8020 APE",
"deploy-aws-base": "graph deploy --node http://54.167.206.116:8020 --ipfs http://18.208.209.235:5001 APE",
"test": "graph test"
},
"dependencies": {
"@graphprotocol/graph-cli": "0.71.1",
"@graphprotocol/graph-ts": "0.32.0",
"eslint-config-prettier": "^6.15.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"eslint": "^9.2.0",
"matchstick-as": "0.5.0"
}
}