-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.84 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
{
"name": "eslint-config-lintification",
"version": "1.0.1",
"description": "A suite of battle-tested linting rules for any modern Node.js application, with full support for the most common TypeScript rules.",
"main": ".eslintrc.cjs",
"files": [
".eslintrc.cjs"
],
"scripts": {
"lint": "eslint --cache --ext cjs --ext js --ext ts ./",
"lint:fix": "eslint --cache --fix --ext cjs --ext js --ext ts ./",
"test": "",
"prepublishOnly": "npm run test && npm run lint",
"preversion": "npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nick-w-nick/eslint-config-lintification.git"
},
"homepage": "https://github.com/nick-w-nick/eslint-config-lintification#readme",
"keywords": [
"eslint",
"eslint-config",
"lintification",
"lint",
"typescript",
"nodejs",
"backend"
],
"author": "https://github.com/nick-w-nick",
"license": "MIT",
"dependencies": {
"eslint": ">= 8.56.0",
"@stylistic/eslint-plugin": "2.10.1",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-file-progress": "1.3.0",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-import-newlines": "1.3.4",
"eslint-plugin-jest": "27.4.2",
"eslint-plugin-newline-destructuring": "1.2.2",
"eslint-plugin-simple-import-sort": "10.0.0",
"typescript-eslint": "8.7.0"
},
"devDependencies": {
"jest": "^29.7.0"
},
"peerDependencies": {
"eslint": ">= 8.56.0"
}
}