-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.41 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"private": true,
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"start": "node .output/server/index.mjs",
"generate": "nuxt generate",
"preview": "nuxt preview",
"type:check": "vue-tsc --noEmit --skipLibCheck",
"lint:eslint": "eslint . --fix",
"lint:prettier": "prettier --write --loglevel warn \"src/**/*.{js,json,css,scss,vue,ts,tsx,jsx,html,md}\"",
"lint:stylelint": "stylelint --fix \"src/**/*.{vue,less,postcss,css,scss}\" --cache --cache-location node_modules/.cache/stylelint/",
"lint:staged": "lint-staged",
"prepare": "husky install",
"cz": "czg"
},
"dependencies": {
"pinia": "^2.1.7",
"vue": "^3.4.8",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@jsxiaosi/commitlint-config": "^1.0.2",
"@jsxiaosi/eslint-config": "^1.0.3",
"@nuxt/devtools": "latest",
"@nuxt/image": "^1.1.0",
"@nuxtjs/color-mode": "^3.3.2",
"@nuxtjs/i18n": "8.0.0",
"@pinia/nuxt": "^0.5.1",
"@vueuse/core": "^10.7.1",
"@vueuse/nuxt": "^10.7.1",
"autoprefixer": "^10.4.16",
"czg": "^1.9.4",
"eslint": "^9.9.1",
"eslint-plugin-nuxt": "^4.0.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"nuxt": "3.9.1",
"postcss": "^8.4.33",
"postcss-html": "^1.5.0",
"prettier": "^3.3.3",
"sass": "^1.69.7",
"stylelint": "^16.1.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-order": "^6.0.4",
"stylelint-scss": "^6.0.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vue-tsc": "^1.8.27"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"lint-staged": {
"˜src/**/*.{ts,js,tsx,jsx}": [
"eslint --fix",
"prettier --write"
],
"{!(package)*.json,*.code-snippets,.!(browserslist)*rc}": [
"prettier --write--parser json"
],
"package.json": [
"prettier --write"
],
"*.vue": [
"eslint --fix",
"prettier --write",
"stylelint --fix"
],
"*.{scss,less,styl,html}": [
"stylelint --fix",
"prettier --write"
],
"*.md": [
"prettier --write"
]
}
}