-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.21 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
{
"name": "eslint-config-alexandernanberg",
"version": "0.0.0-semantically-released",
"license": "MIT",
"author": "Alexander Nanberg <alex.nanberg@hotmail.com> (https://alexandernanberg.com)",
"description": "ESLint rules according to my personal preference",
"repository": "github:alexandernanberg/eslint-config-alexandernanberg",
"bugs": {
"url": "https://github.com/alexandernanberg/eslint-config-alexandernanberg/issues"
},
"keywords": [
"eslint",
"eslintconfig",
"styleguide"
],
"packageManager": "pnpm@9.15.4",
"type": "module",
"exports": {
"./base": "./base.js",
"./react": "./react.js"
},
"scripts": {
"format": "prettier --write \"**/*.{js,md,yml}\"",
"lint": "eslint .",
"test": "npm run lint"
},
"dependencies": {
"@eslint/js": "^9.15.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-compiler": "19.0.0-beta-e552027-20250112",
"eslint-plugin-react-hooks": "^5.0.0",
"typescript-eslint": "^8.15.0"
},
"devDependencies": {
"eslint": "^9.15.0",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": ">=9"
}
}