-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
89 lines (89 loc) · 3.22 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "eslint-config-peerigon",
"version": "0.0.0-semantically-released",
"description": "Peerigon coding rules as eslint config",
"main": "base.js",
"scripts": {
"unused": "eslint-find-rules -u -n -d",
"unused:javascript": "npm run unused -- ./tests/javascript/.eslintrc.json",
"unused:typescript": "npm run unused -- --ext .ts ./tests/typescript/.eslintrc.json",
"unused:react": "npm run unused -- --ext .ts ./tests/react/.eslintrc.json",
"rsync": "rsync -a --include=\"*.js\" --exclude=\".git\" --exclude=\"node_modules\" .",
"test": "run-p test:*",
"test:javascript": "cd tests/javascript; eslint --max-warnings 0 .",
"test:node": "cd tests/node; eslint --max-warnings 0 .",
"test:typescript": "cd tests/typescript; eslint --max-warnings 0 .",
"test:react": "cd tests/react; eslint --max-warnings 0 .",
"test:prettier": "prettier --check .",
"prepare": "husky",
"release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/eslint-config-peerigon.git"
},
"keywords": [
"eslint",
"peerigon",
"coding",
"rules",
"style"
],
"files": [
"*.js",
"styles",
"presets"
],
"author": "Peerigon GmbH <[email protected]>",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/peerigon/eslint-config-peerigon/issues"
},
"homepage": "https://github.com/peerigon/eslint-config-peerigon#readme",
"peerDependencies": {
"eslint": "^8.1.0"
},
"dependencies": {
"@babel/core": "^7.24.9",
"@babel/eslint-parser": "^7.24.8",
"@babel/eslint-plugin": "^7.24.7",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-unsafe-regex": "^1.0.0",
"eslint-plugin-optimize-regex": "^1.2.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-promise": "^6.5.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-syntax-import-attributes": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/react": "^18.3.3",
"eslint": "^8.57.0",
"eslint-find-rules": "^4.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"pin-github-action": "^1.9.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"semantic-release": "^24.0.0",
"typescript": "^5.5.3"
},
"lint-staged": {
".github/workflows/*.{yml,yaml}": [
"pin-github-action --allow-empty"
],
"*.{js,jsx,ts,tsx,css,md,yml,yaml}": "prettier --write"
}
}