-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.42 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
{
"name": "eslint-config-seek",
"version": "14.2.1",
"description": "ESLint configuration used by SEEK",
"main": "index.js",
"files": [
"index.js",
"base.js",
"extensions.js"
],
"repository": {
"type": "git",
"url": "https://github.com/seek-oss/eslint-config-seek.git"
},
"author": "SEEK",
"license": "MIT",
"bugs": {
"url": "https://github.com/seek-oss/eslint-config-seek/issues"
},
"scripts": {
"release": "changeset publish",
"test": "eslint --config index.js . && eslint --config base.js .",
"changeset-version": "changeset version && prettier --write ."
},
"homepage": "https://github.com/seek-oss/eslint-config-seek#readme",
"dependencies": {
"typescript-eslint": "^8.6.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-cypress": "^4.0.0",
"eslint-plugin-import-x": "^4.2.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.9.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@changesets/get-github-info": "^0.6.0",
"eslint": "^9.8.0",
"prettier": "^3.3.3",
"typescript": "~5.7.0"
},
"peerDependencies": {
"eslint": ">=9.9.1",
"typescript": ">=5.5.4"
},
"engines": {
"node": ">=18.18.0"
},
"packageManager": "pnpm@9.15.2",
"volta": {
"node": "22.13.0"
}
}