-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.88 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
90
{
"name": "eslint-config-bloq",
"version": "4.4.1",
"description": "Common ESLint config used at Bloq",
"keywords": [
"bloq",
"config",
"eslint",
"eslintconfig",
"lint",
"markdown",
"mocha",
"next",
"next.js",
"node",
"typescript",
"vitest"
],
"license": "MIT",
"author": "Gabriel Montes <[email protected]>",
"files": [
"*.js"
],
"main": "index.js",
"repository": "bloq/eslint-config-bloq",
"scripts": {
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache ."
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/eslint-plugin": "^1.1.7",
"eslint-config-next": "^13.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-jsdoc": "^43.0.0",
"eslint-plugin-markdownlint": "^0.6.0",
"eslint-plugin-mocha": "^10.0.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prefer-arrow": "^1.0.0",
"eslint-plugin-promise": "^6.0.0"
},
"devDependencies": {
"eslint": "^8.0.0",
"husky": "^4.0.0",
"lint-staged": "^13.0.0",
"prettier": "^2.0.0"
},
"peerDependencies": {
"eslint": "^8.0.0"
},
"private": false,
"eslintConfig": {
"extends": [
"./index.js",
"./node.js"
],
"overrides": [
{
"files": "*.md",
"extends": [
"./markdown.js"
]
}
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"!(*.{js,md})": [
"prettier --ignore-unknown --write"
],
"*.{js,md}": [
"eslint --cache --fix --quiet",
"prettier --write"
]
},
"preferGlobal": false,
"prettier": {
"quoteProps": "consistent",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}