-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
76 lines (76 loc) · 2.3 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
{
"name": "@skyscanner/eslint-config-skyscanner",
"version": "15.0.0",
"description": "Skyscanner's ESLint config.",
"license": "Apache-2.0",
"engines": {
"node": ">=18.18.0",
"npm": ">=9.8.1"
},
"repository": {
"type": "git",
"url": "https://github.com/Skyscanner/eslint-config-skyscanner"
},
"author": "Backpack Design System <[email protected]>",
"keywords": [
"eslint",
"eslintconfig",
"config",
"skyscanner",
"javascript",
"styleguide"
],
"bin": "main.js",
"main": "index.js",
"scripts": {
"lint": "npm run lint:js",
"lint-staged": "lint-staged",
"lint:js": "eslint . --ext js",
"lint:js:fix": "eslint . --ext js --fix",
"postinstall": "node ./main.js",
"prepare": "husky install",
"spellcheck": "mdspell --report --en-gb --ignore-numbers --ignore-acronyms --no-suggestions",
"spellcheck:ci": "npm run spellcheck -- '**/*.md' '!LICENSE.md' '!**/node_modules/**/*.md'",
"pretest": "npx [email protected]",
"test": "(cd test && ./e2e-test.sh)"
},
"lint-staged": {
"!(LICENSE)*.md": [
"npm run spellcheck",
"prettier --write"
],
"**/!(package|package-lock).json": "prettier --write",
"**/*.js": "npm run lint:js:fix",
"**/*.yml": "prettier --write"
},
"dependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.25.1",
"@babel/preset-react": "^7.24.1",
"@skyscanner/eslint-plugin-rules": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.18.0",
"colors": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-backpack": "^6.0.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"eslint-plugin-jest-formatting": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"prettier": "^3.3.1"
},
"devDependencies": {
"husky": "^9.1.4",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"markdown-spellcheck": "^1.3.1"
}
}