-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 906 Bytes
/
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
{
"name": "@indexed-finance/subgraph-clients",
"version": "0.0.23",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@ethersproject/abi": "^5.3.1",
"@types/isomorphic-fetch": "^0.0.35",
"@types/node": "^15.3.0",
"chai": "^4.3.4",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
},
"dependencies": {
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"graphql": "^15.5.0",
"graphql-tag": "^2.12.4",
"isomorphic-fetch": "^3.0.0"
},
"peerDependencies": {
"@ethersproject/abi": "^5.3.1"
}
}