-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.28 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
{
"name": "eslint-config-airbnb-typescript-vue",
"version": "6.0.0-alpha.1",
"description": "Airbnb Base Vue Typescript config",
"license": "MIT",
"author": "José Manuel Casani Guerra <[email protected]>",
"type": "module",
"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 ./",
"prepare": "husky",
"validate": "npm run lint"
},
"dependencies": {
"eslint": "^9.20.1",
"eslint-config-airbnb-typescript-base": "7.0.0-alpha.1",
"eslint-plugin-vue": "^9.32.0",
"typescript-eslint": "^8.24.0"
},
"devDependencies": {
"@commitlint/cli": "^19.7.1",
"commitlint-config-gitmoji": "^2.3.1",
"eslint-config-prettier": "^10.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.0",
"prettier-package-json": "^2.8.0",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.{js,ts}": "eslint"
},
"packageManager": "[email protected]+sha512.ee592eda8815a8a293c206bb0917c4bb0ff274c50def7cbc17be05ec641fc2d1b02490ce660061356bd0d126a4d7eb2ec8830e6959fb8a447571c631d5a2442d"
}