-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.46 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
{
"name": "@mskelton/eslint-config",
"description": "Simple and sensible ESLint config.",
"version": "0.0.0-semantically-released",
"author": "Mark Skelton",
"repository": "github:mskelton/eslint-config",
"homepage": "https://github.com/mskelton/eslint-config#readme",
"bugs": {
"url": "https://github.com/mskelton/eslint-config/issues"
},
"license": "ISC",
"keywords": [
"eslint",
"eslint-config",
"eslint-typescript",
"eslint-react"
],
"publishConfig": {
"access": "public"
},
"type": "module",
"files": [
"lib"
],
"types": "./lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js"
}
},
"scripts": {
"lint": "eslint .",
"fmt": "prettier --write ."
},
"peerDependencies": {
"eslint": ">= 9"
},
"dependencies": {
"@eslint/js": "^9.13.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/eslint-plugin": "^1.1.21",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-playwright": "^2.0.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-sort": "^4.0.0",
"globals": "^15.11.0",
"typescript-eslint": "^8.11.0"
},
"devDependencies": {
"@mskelton/semantic-release-config": "^1.0.1",
"eslint": "^9.13.0",
"prettier": "^3.0.3",
"semantic-release": "^23.0.2"
}
}