-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.07 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.07 KB
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
{
"type": "module",
"packageManager": "pnpm@10.12.1",
"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",
"lint": "eslint --max-warnings 0",
"lint:fix": "eslint --fix --max-warnings 0",
"type-check": "nuxt typecheck"
},
"dependencies": {
"@iconify-json/mingcute": "1.2.3",
"@vueuse/core": "13.3.0",
"@vueuse/nuxt": "13.3.0",
"nuxt": "3.17.5",
"postcss": "8.5.5",
"postcss-nesting": "13.0.2",
"radix-vue": "1.9.17",
"unplugin-icons": "22.1.0",
"vue": "3.5.16",
"vue-router": "4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "4.14.1",
"eslint": "9.28.0",
"eslint-plugin-format": "1.0.1",
"lint-staged": "16.1.0",
"simple-git-hooks": "2.13.0",
"typescript": "5.8.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}