-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.86 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@mediamonks/eslint-config",
"version": "3.1.1",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"author": "frontend.monks",
"homepage": "https://github.com/mediamonks/eslint-config#readme",
"bugs": {
"url": "https://github.com/mediamonks/eslint-config/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mediamonks/eslint-config.git"
},
"description": "Sharable eslint config based on Media.Monks Frontend Coding Standards",
"keywords": [
"Media.Monks",
"eslint",
"eslint-config"
],
"type": "module",
"exports": {
".": "./src/index.js",
"./javascript": "./src/javascript.js",
"./typescript": "./src/typescript.js",
"./react": "./src/react.js",
"./typescriptReact": "./src/typescriptReact.js"
},
"files": [
"src/**/*",
"LICENSE",
"README.md"
],
"scripts": {
"eslint": "eslint .",
"eslint:fix": "eslint . --fix",
"format": "prettier --write \"./**/*.{ts,js,tsx,jsx,json}\"",
"prepare": "husky"
},
"devDependencies": {
"@mediamonks/prettier-config": "^1.0.0",
"eslint": "^9.0.0",
"husky": "^9.0.0",
"lerna": "^8.0.0",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0"
},
"engines": {
"node": ">=20"
},
"prettier": "@mediamonks/prettier-config",
"lint-staged": {
"*.{js,jsx,ts,tsx,md,json}": "prettier --write"
},
"dependencies": {
"@eslint/js": "^9.14.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-security": "^3.0.1",
"eslint-plugin-storybook": "^0.11.0",
"eslint-plugin-unicorn": "^56.0.0",
"typescript-eslint": "^8.13.0"
}
}