-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "eslint-config-airbnb-typescript-base",
"version": "6.0.1",
"description": "Airbnb Base Typescript config",
"license": "MIT",
"author": "José Manuel Casani Guerra <[email protected]>",
"main": "index.js",
"scripts": {
"format": "npm run format:package && npm run format:prettier && npm run format:eslint",
"format:eslint": "eslint --fix ./",
"format:package": "prettier-package-json --write",
"format:prettier": "prettier --write \"**/*.{js,json,md,yml}\"",
"lint": "eslint ./",
"validate": "npm run lint"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"confusing-browser-globals": "^1.0.11",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-import-resolver-webpack": "^0.13.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-typescript-sort-keys": "^3.2.0",
"typescript": "^5.4.5"
},
"devDependencies": {
"commitlint": "^19.3.0",
"commitlint-config-gitmoji": "^2.3.1",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"prettier-package-json": "^2.8.0"
},
"lint-staged": {
"*.{js,ts}": "eslint"
}
}