-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "@graphprotocol/graph-disputes",
"version": "0.3.2",
"description": "Graph Disputes",
"files": [
"bin",
"dist/**/*",
"README.md",
"LICENSE"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/edgeandnode/graph-disputes",
"author": "Graph Protocol",
"license": "MIT",
"scripts": {
"format": "prettier --write src/*.ts src/**/*.ts src/**/**/*.ts",
"lint": "eslint . --ext .ts,.tsx",
"compile": "tsc --build",
"prepare": "yarn format && yarn lint && yarn compile",
"start": "yarn prepare && node ./dist/index.js start",
"clean": "rm -rf ./node_modules ./dist ./tsconfig.tsbuildinfo"
},
"bin": {
"graph-disputes": "bin/graph-disputes"
},
"dependencies": {
"@ethersproject/bignumber": "^5.1.1",
"@ethersproject/contracts": "^5.1.1",
"@ethersproject/transactions": "^5.1.1",
"@graphprotocol/common-ts": "^2.0.0",
"@graphprotocol/contracts": "^1.4.0",
"@iarna/toml": "^2.2.5",
"@types/cli-progress": "^3.9.1",
"@types/find-up": "^4.0.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/node": "^14.14.21",
"@types/p-queue": "^3.2.1",
"@types/table": "6.0.0",
"@types/winston": "^2.4.4",
"@types/yargs": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@urql/core": "^1.16.1",
"chalk": "^4.0.0",
"cli-progress": "^3.9.0",
"cli-spinners": "^2.6.0",
"cli-table": "^0.3.4",
"env-paths": "^2.2.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"ethers": "^5.1.3",
"find-up": "^5.0.0",
"graphql-tag": "^2.11.0",
"inquirer": "^7.3.3",
"isomorphic-fetch": "^3.0.0",
"object-treeify": "^2.0.0",
"ora": "^5.4.0",
"p-queue": "^6.6.1",
"prettier": "^2.2.1",
"typescript": "^4.1.3",
"winston": "^3.3.3",
"yargs": "^17.0.0"
}
}