forked from graphprotocol/graph-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.34 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
{
"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,
"packageManager": "[email protected]",
"engines": {
"pnpm": ">=8"
},
"scripts": {
"build": "pnpm --filter=@graphprotocol/graph-* build",
"lint": "pnpm lint:prettier && pnpm lint:eslint",
"lint:eslint": "eslint .",
"lint:prettier": "prettier -c .",
"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.4.7",
"@changesets/cli": "^2.25.2",
"@theguild/eslint-config": "^0.9.0",
"@theguild/prettier-config": "^1.0.0",
"babel-jest": "^29.3.1",
"eslint": "^8.31.0",
"jest": "29.5.0",
"prettier": "^2.8.2"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
}
}
}