-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.02 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
{
"name": "eslint-config-airbnb-typescript-vue",
"version": "5.0.0",
"description": "Airbnb Base Vue 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": {
"eslint": "^8.57.0",
"eslint-config-airbnb-typescript-base": "^6.0.1",
"eslint-plugin-vue": "^9.27.0"
},
"devDependencies": {
"@commitlint/cli": "^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",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.{js,ts}": "eslint"
}
}