-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 966 Bytes
/
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
{
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.17.0"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && test -z $GITHUB_ACTIONS && simple-git-hooks || true"
},
"dependencies": {
"@iconify-json/mingcute": "1.2.0",
"@vueuse/core": "11.0.3",
"@vueuse/nuxt": "11.0.3",
"nuxt": "3.13.1",
"postcss": "8.4.47",
"postcss-nesting": "13.0.0",
"radix-vue": "1.9.5",
"unplugin-icons": "0.19.3",
"vue": "3.5.2",
"vue-router": "4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "3.2.2",
"eslint": "9.9.1",
"eslint-plugin-format": "0.1.2",
"lint-staged": "15.2.10",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}