forked from dimaMachina/graphql-eslint
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.04 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
{
"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": ">=8"
},
"scripts": {
"build": "turbo run build --filter=!website && bob check",
"ci:lint": "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 --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 --filter=!website",
"typecheck": "turbo run typecheck"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.1",
"@graphql-tools/utils": "10.0.11",
"@theguild/eslint-config": "0.11.1",
"@theguild/prettier-config": "2.0.2",
"@types/dedent": "0.7.2",
"@types/node": "20.10.3",
"bob-the-bundler": "7.0.1",
"chalk": "5.3.0",
"dedent": "1.5.1",
"enquirer": "2.4.1",
"eslint": "8.55.0",
"eslint-plugin-eslint-plugin": "5.0.7",
"eslint-plugin-tailwindcss": "3.13.0",
"husky": "8.0.3",
"jest-snapshot-serializer-raw": "2.0.0",
"json-schema-to-markdown": "1.1.1",
"prettier": "3.1.0",
"prettier-plugin-tailwindcss": "0.5.8",
"rimraf": "5.0.5",
"tsup": "^8.0.0",
"tsx": "4.6.2",
"turbo": "^1.10.12",
"typescript": "5.3.3",
"vitest": "0.34.6"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}