-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "@periodica-press/linters",
"version": "2.0.5",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:periodica-press/linters.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"description": "es-lint config",
"author": {
"name": "Dmitry Alexeev",
"email": "dimks.alexeev@gmail.com"
},
"lint-staged": {
"**/*.{js,md,json}": [
"prettier --write",
"git add"
]
},
"license": "MIT",
"dependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"eslint": "^8.32.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.3"
},
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.1.0"
},
"scripts": {
"prepare": "husky install"
}
}