-
Notifications
You must be signed in to change notification settings - Fork 3.4k
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 912 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 912 Bytes
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
{
"name": "@packages/eslint-config",
"version": "0.0.0-development",
"private": true,
"main": "src/index.ts",
"scripts": {
"lint": "eslint"
},
"dependencies": {
"jiti": "^2.4.2"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.0",
"@eslint/js": "^10.0.0",
"@stylistic/eslint-plugin": "^5.2",
"@typescript-eslint/eslint-plugin": "^8.37.0",
"@typescript-eslint/parser": "^8.37.0",
"eslint": "^9.31.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-cypress": "^6.1.0",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-mocha": "^11.1.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-vue": "^10.3.0",
"globals": "^15.14.0",
"typescript-eslint": "^8.37.0"
},
"peerDependencies": {
"eslint": "^9.31.0"
},
"license": "MIT",
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": "eslint --fix"
}
}