-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
32 lines (32 loc) · 1.06 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
{
"name": "airswap-subgraph",
"version": "0.0.0",
"private": true,
"license": "MIT",
"type": "module",
"scripts": {
"configure": "node configure.js",
"codegen": "rm -rf ./generated; graph codegen",
"build": "graph build",
"deploy": "graph deploy --node https://api.studio.thegraph.com/deploy/ airswap",
"create-local": "graph create --node http://localhost:8020/ airswap",
"remove-local": "graph remove --node http://localhost:8020/ airswap",
"deploy-local": "graph deploy --node http://localhost:8020/ --ipfs http://localhost:5001 airswap",
"test": "graph test",
"format": "prettier --write \"./**/*.ts\" \"./**/*.js\" \"./**/*.json\""
},
"dependencies": {
"@airswap/registry": "5.0.0",
"@airswap/swap-erc20": "5.0.0",
"@airswap/utils": "5.0.1",
"@graphprotocol/graph-cli": "^0.84.0",
"@graphprotocol/graph-ts": "^0.35.1"
},
"devDependencies": {
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^5.0.0",
"matchstick-as": "0.5.0",
"mustache": "^4.2.0"
}
}