-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.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
{
"name": "nuxt-app",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"prepare": "husky install",
"postinstall": "nuxt prepare && husky install",
"lint": "eslint --ext \"**/*.+(js,jsx,vue,ts,tsx,css,scss,md)\" --ignore-path .gitignore .",
"lint:fix": "eslint --fix --ext .js,.ts,.vue --ignore-path .gitignore . "
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.9",
"@nuxt/devtools": "latest",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-babel-module": "^5.3.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-nuxt": "^3.2.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.1",
"nuxt": "^3.7.3",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"lint-staged": "^14.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"yarn lint:fix"
]
}
}