-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "eslint-config-enact",
"version": "5.0.0-alpha.4",
"description": "ESLint config for Enact",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"fix": "eslint . --fix"
},
"author": "",
"license": "Apache-2.0",
"engines": {
"node": "^18.18.0 || ^20.9.0 || >=21.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/enactjs/eslint-config-enact.git"
},
"eslintConfig": {
"extends": "./index.js"
},
"peerDependencies": {
"eslint": "^8.57.0"
},
"dependencies": {
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.9",
"@rushstack/eslint-patch": "^1.10.4",
"@stylistic/eslint-plugin-js": "^2.10.1",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"babel-preset-enact": "^0.1.10",
"eslint": "^8.57.1",
"eslint-plugin-enact": "^2.0.0-alpha.1",
"eslint-plugin-jest": "^28.9.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-testing-library": "^6.4.0",
"react": "^19.0.0"
}
}