forked from eslint-stylistic/eslint-stylistic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.72 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@eslint-stylistic/monorepo",
"type": "module",
"version": "2.11.0",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"scripts": {
"build": "pnpm -r run build",
"dev": "pnpm -r --parallel run dev",
"stub": "pnpm -r --parallel run stub",
"lint": "eslint . --cache",
"update": "esno scripts/update.ts && pnpm run lint --fix",
"merge": "esno scripts/merge.ts && pnpm run update",
"publish:ci": "esno scripts/publish.ts",
"test": "vitest -c vitest.config.unit.ts",
"test:fixtures": "vitest -c vitest.config.fixtures.ts",
"check": "pnpm run update && pnpm run build && pnpm run typecheck && pnpm run test --run",
"typecheck": "vue-tsc --noEmit",
"prepare": "simple-git-hooks",
"docs": "pnpm -C docs run docs:dev",
"docs:build": "pnpm -C docs run docs:build",
"play:lint": "pnpm -C playground run lint"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@antfu/eslint-define-config": "catalog:",
"@antfu/ni": "catalog:",
"@antfu/utils": "catalog:",
"@babel/eslint-parser": "catalog:",
"@babel/plugin-syntax-decorators": "catalog:",
"@babel/plugin-syntax-do-expressions": "catalog:",
"@babel/plugin-syntax-function-bind": "catalog:",
"@babel/preset-react": "catalog:",
"@iconify-json/carbon": "catalog:",
"@iconify-json/ri": "catalog:",
"@rollup/plugin-alias": "catalog:",
"@rollup/plugin-commonjs": "catalog:",
"@rollup/plugin-node-resolve": "catalog:",
"@shikijs/twoslash": "catalog:",
"@shikijs/vitepress-twoslash": "catalog:",
"@stylistic/eslint-plugin": "workspace:*",
"@stylistic/eslint-plugin-js": "workspace:*",
"@stylistic/eslint-plugin-migrate": "workspace:*",
"@stylistic/eslint-plugin-plus": "workspace:*",
"@stylistic/eslint-plugin-ts": "workspace:*",
"@types/estraverse": "catalog:",
"@types/estree": "catalog:",
"@types/fs-extra": "catalog:",
"@types/js-yaml": "catalog:",
"@types/json-schema": "catalog:",
"@types/node": "catalog:",
"@types/picomatch": "catalog:",
"@types/semver": "catalog:",
"@typescript-eslint/parser": "catalog:",
"@typescript-eslint/utils": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vitest/ui": "catalog:",
"change-case": "catalog:",
"escape-string-regexp": "catalog:",
"eslint": "catalog:",
"eslint-plugin-format": "catalog:",
"eslint-visitor-keys": "catalog:",
"eslint-vitest-rule-tester": "catalog:",
"esno": "catalog:",
"espree": "catalog:",
"estraverse": "catalog:",
"execa": "catalog:",
"fast-glob": "catalog:",
"fs-extra": "catalog:",
"gray-matter": "catalog:",
"jiti": "catalog:",
"js-yaml": "catalog:",
"json-schema": "catalog:",
"json-schema-to-typescript-lite": "catalog:",
"lint-staged": "catalog:",
"ohash": "catalog:",
"picomatch": "catalog:",
"pnpm": "catalog:",
"prettier": "catalog:",
"rimraf": "catalog:",
"rollup": "catalog:",
"rollup-plugin-dts": "catalog:",
"rollup-plugin-esbuild": "catalog:",
"semver": "catalog:",
"shiki": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"tsx": "catalog:",
"twoslash-eslint": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
},
"resolutions": {
"@typescript-eslint/utils": "catalog:",
"rollup": "catalog:",
"twoslash-eslint": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}