-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 922 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"nuxt": "^3.15.4",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.0",
"@nuxt/eslint": "1.0.0",
"@unocss/eslint-config": "^65.4.3",
"@unocss/nuxt": "^65.4.3",
"@unocss/reset": "^65.4.3",
"@vueuse/nuxt": "12.5.0",
"eslint": "^9.19.0",
"eslint-plugin-format": "^1.0.1",
"lint-staged": "^15.4.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.3",
"unocss": "^65.4.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}