-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.07 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.07 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@boehringer-ingelheim/eslint-config",
"version": "0.0.0-semantically-released",
"type": "module",
"description": "Shared eslint configuration used at Boehringer Ingelheim for code styling",
"keywords": [
"boehringer",
"boehringer-ingelheim",
"config",
"configuration",
"eslint",
"eslintrc",
"eslint-config",
"linter"
],
"license": "MIT",
"homepage": "https://github.com/Boehringer-Ingelheim/eslint-config",
"repository": {
"type": "git",
"url": "https://github.com/Boehringer-Ingelheim/eslint-config.git"
},
"bugs": {
"url": "https://github.com/Boehringer-Ingelheim/eslint-config/issues"
},
"files": [
"configs",
"lib",
"index.js",
"index.d.ts"
],
"main": "index.js",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"default": "./index.js"
}
},
"types": "index.d.ts",
"scripts": {
"prepare": "husky",
"release": "semantic-release",
"repair": "npx --yes rimraf@6 .git/hooks node_modules package-lock.json && npm install",
"lint": "eslint ."
},
"peerDependencies": {
"eslint": ">= 9.34.0"
},
"dependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "^16.1.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-perfectionist": "^5.3.1",
"eslint-plugin-playwright": "^2.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-sonarjs": "^3.0.5",
"globals": "^17.0.0",
"is-ci": "^4.1.0",
"typescript-eslint": "^8.53.0"
},
"devDependencies": {
"@boehringer-ingelheim/prettier-config": "2.0.0",
"@commitlint/cli": "20.3.1",
"@commitlint/config-conventional": "20.3.1",
"@commitlint/types": "20.3.1",
"dotenv-cli": "11.0.0",
"husky": "9.1.7",
"prettier": "3.7.4",
"semantic-release": "25.0.2"
}
}