-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
69 lines (69 loc) · 1.95 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
67
68
69
{
"name": "thegraph-client-monorepo",
"private": true,
"scripts": {
"postinstall": "husky install",
"format": "prettier . --write",
"pretty-quick": "pretty-quick --staged",
"prebuild": "rimraf packages/*/dist",
"check": "yarn workspaces run check",
"build": "bob build",
"test": "jest --passWithNoTests --runInBand --detectOpenHandles",
"test:leaks": "jest --passWithNoTests --detectLeaks --runInBand --detectOpenHandles",
"release": "yarn build && changeset publish",
"fix-bin": "node scripts/fix-bin.js",
"postbuild": "yarn fix-bin"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphprotocol/graph-client"
},
"keywords": [
"thegraph",
"web3",
"graphql",
"client",
"tools"
],
"contributors": [
"Dotan Simha <[email protected]>",
"Arda Tanrikulu <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/graphprotocol/graph-client/issues"
},
"workspaces": [
"packages/*",
"examples/*"
],
"homepage": "https://github.com/graphprotocol/graph-client#readme",
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@changesets/cli": "2.27.10",
"@changesets/changelog-github": "0.5.0",
"@types/babel__core": "7.20.5",
"@types/babel__preset-env": "7.9.7",
"@types/jest": "29.5.14",
"babel-jest": "29.7.0",
"babel-plugin-parameter-decorator": "1.0.16",
"babel-plugin-transform-typescript-metadata": "0.3.2",
"bob-the-bundler": "7.0.1",
"graphql": "16.9.0",
"husky": "9.1.6",
"jest": "29.7.0",
"prettier": "3.3.3",
"pretty-quick": "4.0.0",
"rimraf": "6.0.1",
"typescript": "5.7.2",
"weak-napi": "2.0.2",
"ts-jest": "29.2.5"
},
"resolutions": {
"graphql": "16.9.0"
}
}