-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 961 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 961 Bytes
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
{
"name": "nuxt",
"type": "module",
"private": true,
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare && npx simple-git-hooks",
"lint": "npx eslint ."
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@nuxt/eslint": "^1.15.2",
"@nuxt/fonts": "0.11.4",
"@nuxt/ui": "^4.6.1",
"@types/qrcode": "^1.5.6",
"@vueuse/core": "^14.2.1",
"@vueuse/nuxt": "^14.2.1",
"eslint": "^10.2.1",
"eslint-plugin-format": "^2.0.1",
"nano-staged": "^1.0.2",
"nuxt": "^4.4.2",
"qrcode": "^1.5.4",
"simple-git-hooks": "^2.13.1",
"typescript": "^6.0.3",
"vue": "^3.5.32"
},
"simple-git-hooks": {
"pre-commit": "npx nano-staged"
},
"nano-staged": {
"*": "npx eslint . --fix"
}
}