-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
35 lines (35 loc) · 1010 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
{
"scripts": {
"build": "rm -rf dist node_modules; yarn && yarn tsc && babel dist --out-dir dist && rm -rf node_modules"
},
"types": "dist/index.d.ts",
"keywords": [
"thegraph",
"graphprotocol",
"react",
"react-native",
"ethereum",
"ipfs"
],
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@types/node": "^14.14.21",
"@types/react": "^17.0.0",
"typescript": "^4.1.3",
"@apollo/client": "^3.3.7",
"graphql": "^15.4.0",
"react": "16.13.1",
"nanoid": "^3.1.20"
},
"name": "thegraph-react",
"version": "1.0.0-alpha.1",
"description": "⚛️ React bindings for helping build decentralized applications quickly on Ethereum and IPFS using GraphQL.",
"main": "dist",
"repository": "https://github.com/cawfree/thegraph-react",
"author": "Alex Thomas (@cawfree) <hello@cawfree.com>",
"license": "MIT",
"private": false
}