-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "chillab",
"type": "module",
"version": "0.1.0",
"private": true,
"author": {
"name": "Chilfish",
"email": "chill4fish@gmail.com"
},
"scripts": {
"build": "nuxi generate",
"dev": "nuxi dev",
"start": "npx serve .output/public",
"lint": "eslint .",
"typecheck": "nuxi typecheck",
"prepare": "nuxi prepare",
"postinstall": "simple-git-hooks"
},
"dependencies": {
"@iconify-json/tabler": "^1.1.120",
"@nuxt/image": "^1.7.0",
"@nuxtjs/color-mode": "^3.4.4",
"@nuxtjs/seo": "^2.0.0-rc.18",
"@nuxtjs/sitemap": "^6.0.0-beta.2",
"@pinia/nuxt": "^0.5.3",
"@unocss/nuxt": "^0.62.2",
"@vue-macros/nuxt": "^1.11.6",
"@vueuse/components": "^11.0.0",
"@vueuse/core": "^11.0.0",
"@vueuse/nuxt": "^11.0.0",
"fast-average-color": "^9.4.0",
"jsdom": "^24.1.1",
"nuxt": "^3.12.4",
"pinia": "^2.2.2",
"sass": "^1.77.8"
},
"devDependencies": {
"@antfu/eslint-config": "^2.26.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.4.0",
"@unocss/eslint-config": "^0.62.2",
"eslint-plugin-format": "^0.1.2",
"lint-staged": "^15.2.9",
"pnpm": "^9.7.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}