-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.21 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.21 KB
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
67
68
69
70
71
72
73
74
75
{
"name": "@graphprotocol/graph-disputes",
"version": "1.0.0",
"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": "pnpm format && pnpm lint && pnpm compile",
"start": "pnpm prepare && node ./dist/index.js start",
"clean": "rm -rf ./node_modules ./dist ./tsconfig.tsbuildinfo",
"test": "pnpm compile && npx mocha --require ts-node/register test/**/*.test.ts",
"test:smoke": "node dist/index.js --help && node dist/index.js create --help"
},
"bin": {
"graph-disputes": "bin/graph-disputes"
},
"dependencies": {
"@graphprotocol/common-ts": "3.0.1",
"@graphprotocol/interfaces": "0.6.4",
"@graphprotocol/toolshed": "1.1.2",
"@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": "6.15.0",
"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"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^10.0.10",
"@types/sinon": "^10.0.0",
"chai": "^4.3.0",
"mocha": "^10.8.2",
"sinon": "^15.0.0",
"ts-node": "^10.9.0"
}
}