-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
package.json
60 lines (60 loc) · 2.05 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
{
"name": "graphql-eslint-monorepo",
"type": "module",
"repository": "https://github.com/B2o5T/graphql-eslint",
"author": "Dotan Simha <[email protected]>",
"license": "MIT",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=9.0.6"
},
"scripts": {
"build": "turbo run build --filter=!website && attw --pack packages/plugin/dist",
"ci:lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ignore-path .gitignore --output-file eslint_report.json --format json .",
"create-rule": "tsx scripts/create-rule.ts",
"generate:configs": "tsx scripts/generate-configs.ts",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ignore-path .gitignore --cache .",
"lint:prettier": "prettier --ignore-path .gitignore --ignore-path .prettierignore --cache --check .",
"prebuild": "rimraf tsconfig.tsbuildinfo",
"prerelease": "NODE_ENV=production pnpm build",
"prettier": "pnpm lint:prettier --write",
"release": "changeset publish",
"test": "turbo run test",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.9",
"@graphql-tools/utils": "10.5.5",
"@theguild/eslint-config": "0.13.0",
"@theguild/prettier-config": "2.0.7",
"@types/dedent": "0.7.2",
"@types/node": "22.9.0",
"chalk": "5.3.0",
"dedent": "1.5.3",
"enquirer": "2.4.1",
"eslint": "9.9.0",
"eslint-plugin-eslint-plugin": "6.3.1",
"eslint-plugin-tailwindcss": "3.17.5",
"husky": "9.1.6",
"jest-snapshot-serializer-raw": "2.0.0",
"json-schema-to-markdown": "1.1.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "0.6.8",
"rimraf": "6.0.1",
"tsup": "^8.0.0",
"tsx": "4.19.2",
"turbo": "2.2.3",
"typescript": "5.6.3",
"vitest": "2.0.5"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}