forked from graphprotocol/graph-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.46 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
{
"name": "graphprotocol-tools-monorepo",
"repository": {
"type": "git",
"url": "git+https://github.com/graphprotocol/graph-cli"
},
"homepage": "https://github.com/graphprotocol/graph-cli#readme",
"bugs": {
"url": "https://github.com/graphprotocol/graph-cli/issues"
},
"license": "(Apache-2.0 OR MIT)",
"private": true,
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9"
},
"scripts": {
"build": "pnpm --filter=@graphprotocol/graph-* build",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"lint:fix": "pnpm lint:prettier:fix && pnpm lint:eslint:fix",
"lint:prettier": "prettier -c .",
"lint:prettier:fix": "prettier . --write",
"release": "pnpm build && changeset publish",
"test:cli": "pnpm --filter @graphprotocol/graph-cli test",
"test:ts": "pnpm --filter @graphprotocol/graph-ts test",
"type-check": "pnpm --filter=@graphprotocol/graph-cli type-check"
},
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.25.2",
"@theguild/eslint-config": "0.11.0",
"@theguild/prettier-config": "2.0.1",
"@types/node": "^20.6.2",
"eslint": "8.57.0",
"prettier": "3.0.3"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}