-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.36 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
{
"name": "eslint-config-bloq",
"version": "4.5.0",
"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 <gabriel@bloq.com>",
"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",
"eslint-plugin-sort-destructure-keys": "^2.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,
"preferGlobal": false
}