-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "nuxt-app",
"private": true,
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint . --fix",
"stylelint:fix": "npx stylelint **/*.{css,scss,vue,less,html} --fix"
},
"dependencies": {
"@giscus/vue": "^2.3.0",
"@iconify-json/icon-park-outline": "^1.1.12",
"@iconify-json/simple-icons": "^1.1.79",
"@unocss/reset": "^0.57.6",
"date-fns": "^2.30.0"
},
"devDependencies": {
"@chansee97/eslint-config-vue": "^0.3.5",
"@chansee97/stylelint-config": "^0.3.5",
"@nuxt/content": "^2.9.0",
"@nuxtjs/stylelint-module": "^5.1.0",
"@types/node": "^20.9.3",
"@unocss/nuxt": "^0.57.6",
"@vueuse/core": "^10.6.1",
"@vueuse/nuxt": "^10.6.1",
"eslint": "^8.39.0",
"lint-staged": "^15.1.0",
"nuxt": "^3.8.2",
"sass": "^1.69.5",
"simple-git-hooks": "^2.9.0",
"stylelint": "^15.11.0",
"typescript": "^5.0.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
],
"*.{css,scss,less,html}": [
"stylelint --fix"
],
"*.vue": [
"eslint --fix",
"stylelint --fix"
]
}
}