-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
48 lines (48 loc) · 1.45 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
{
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint:js": "eslint --ext .ts,.js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore",
"lint": "npm run lint:js && npm run lint:style",
"lintfix": "eslint --fix --ext .js,.jsx,.ts,.tsx,.vue --ignore-path .gitignore . && stylelint --fix **/*.{vue,css,scss} --ignore-path .gitignore"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown --ignore-path .prettierignore",
"*.{js,cjs,mjs,ts,jsx,tsx,vue}": "eslint --fix",
"*.{css,scss,vue}": "stylelint --fix --ignore-path .gitignore"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@nuxtjs/apollo": "^5.0.0-alpha.9",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"nuxt": "^3.14.159",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"stylelint": "^16.10.0",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-config-standard-vue": "^1.0.0",
"vite-plugin-vuetify": "^2.0.4"
},
"dependencies": {
"@mdi/font": "^7.2.96",
"@pinia/nuxt": "^0.5.1",
"sass": "^1.68.0",
"vuetify": "^3.3.23"
},
"version": "3.0.0"
}