-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.8 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
{
"name": "eslint-plugin-yola",
"version": "2.1.0",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js ./",
"prepublishOnly": "npm run lint && npm run test",
"prettier": "prettier ./**/* --write",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yola/eslint-plugin-yola.git"
},
"author": "Yola Engineering <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yola/eslint-plugin-yola/issues"
},
"homepage": "https://github.com/yola/eslint-plugin-yola#readme",
"dependencies": {
"@babel/eslint-parser": "^7.22.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint-config-airbnb": "19.x",
"eslint-config-airbnb-base": "15.x",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "2.x",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-restricted-globals": "^0.2.0",
"lodash": "^4.17.21",
"typescript": "5.x"
},
"devDependencies": {
"eslint": "^8.45.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0"
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0",
"prettier": "^2.0.0 || ^3.0.0",
"typescript": "*"
},
"jest": {
"testMatch": [
"**/tests/*-spec.js?(x)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}