forked from rileytomasek/eslint-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.41 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
{
"name": "@dexaai/eslint-config",
"version": "1.3.7",
"description": "Dexa ESLint config",
"repository": "dexaai/eslint-config",
"private": false,
"license": "MIT",
"main": "index.js",
"files": [
"README.md",
"config",
"index.js",
"node.js"
],
"scripts": {
"format": "prettier --write .",
"lint": "eslint --fix . --ext .ts,.tsx,.js,.jsx",
"release": "np",
"test": "exit 0"
},
"dependencies": {
"@rushstack/eslint-patch": "^1.10.4",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@typescript-eslint/utils": "^8.18.2",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1"
},
"devDependencies": {
"@types/eslint": "^8.56.10",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"np": "10.1.0",
"prettier": "^3.4.2",
"react": "^18.3.1",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": "^8.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}