-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.99 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.99 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@graphprotocol/indexer-common",
"version": "0.25.4",
"description": "Common library for Graph Protocol indexer components",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"repository": "https://github.com/graphprotocol/indexer",
"author": "The Graph Foundation",
"license": "MIT",
"scripts": {
"format": "prettier --write 'src/**/*.ts'",
"lint": "eslint . --ext .ts,.tsx --fix",
"compile": "tsc",
"prepare": "yarn format && yarn lint && yarn compile",
"test": "LOG_LEVEL=info jest --colors --verbose --runInBand --detectOpenHandles",
"test:ci": "LOG_LEVEL=info jest --verbose --maxWorkers=1 --ci",
"test:debug": "LOG_LEVEL=debug jest --runInBand --detectOpenHandles --verbose",
"test:watch": "jest --runInBand --detectOpenHandles --watch --passWithNoTests --verbose",
"clean": "rm -rf ./node_modules ./dist ./tsconfig.tsbuildinfo"
},
"dependencies": {
"@pinax/graph-networks-registry": "0.6.7",
"@graphprotocol/common-ts": "3.0.1",
"@graphprotocol/toolshed": "1.1.1",
"@semiotic-labs/tap-contracts-bindings": "2.0.0",
"@thi.ng/heaps": "1.2.38",
"@types/lodash.clonedeep": "^4.5.7",
"@types/lodash.intersection": "^4.4.7",
"@types/lodash.xor": "^4.5.7",
"@types/sequelize": "4.28.20",
"@urql/core": "3.1.0",
"@urql/exchange-execute": "2.1.0",
"axios": "1.6.2",
"body-parser": "1.20.2",
"cors": "2.8.5",
"ethers": "6.13.7",
"evt": "1.10.1",
"express": "4.18.2",
"fastify": "3.25.0",
"graphql": "16.8.0",
"graphql-tag": "2.12.6",
"jayson": "3.6.6",
"lodash.clonedeep": "^4.5.0",
"lodash.groupby": "^4.6.0",
"lodash.isequal": "4.5.0",
"lodash.xor": "^4.5.0",
"morgan": "1.10.0",
"ngeohash": "0.6.3",
"p-filter": "2.1.0",
"p-map": "4.0.0",
"p-reduce": "2.1.0",
"p-retry": "4.6.1",
"p-timeout": "4.1.0",
"parsimmon": "^1.18.1",
"sequelize": "6.33.0",
"ts-custom-error": "^3.3.1",
"yaml": "1.10.0",
"zod": "^3.21.4",
"zod-validation-error": "^1.3.0"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@types/cors": "2.8.14",
"@types/express": "4.17.17",
"@types/jest": "29.5.4",
"@types/lodash.groupby": "^4.6.7",
"@types/lodash.isequal": "4.5.6",
"@types/morgan": "1.9.5",
"@types/ngeohash": "0.6.4",
"@types/node": "20.6.1",
"@types/parsimmon": "^1.10.6",
"@typescript-eslint/eslint-plugin": "6.13.2",
"@typescript-eslint/parser": "6.13.2",
"babel-cli": "^6.26.0",
"eslint": "8.55.0",
"eslint-config-prettier": "9.1.0",
"jest": "<30.0.0-0",
"prettier": "3.0.3",
"ts-jest": "29.1.1",
"typescript": "5.2.2"
},
"resolutions": {
"ethers": "6.13.7",
"sequelize": "6.33.0",
"@urql/exchange-execute/@urql/core": "3.1.0"
},
"babel": {
"presets": [],
"plugins": [
"transform-es2015-modules-commonjs"
]
},
"gitHead": "972ab96774007b2aee15b1da169d2ff4be9f9d27"
}