-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.11 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"generate": "nuxi generate",
"preview": "nuxi preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier \"**/*.{css,html,json,md,mjs,ts,vue,yml}\" --write",
"format:check": "prettier \"**/*.{css,html,json,md,mjs,ts,vue,yml}\" --check",
"test:types": "vue-tsc --noEmit",
"prepare": "nuxi prepare"
},
"devDependencies": {
"@antfu/eslint-config": "^4.3.0",
"@sindresorhus/slugify": "^2.2.1",
"@types/node": "^22.13.5",
"@unocss/eslint-config": "^65.5.0",
"@unocss/nuxt": "^65.5.0",
"@unocss/preset-wind": "^65.5.0",
"@vueuse/nuxt": "^12.7.0",
"eslint": "^9.21.0",
"nuxt": "^3.15.4",
"nuxt-kql": "^1.5.4",
"nuxt-vitalizer": "^0.10.0",
"prettier": "^3.5.2",
"typescript": "^5.7.3",
"unocss": "^65.5.0",
"vue-router-better-scroller": "^0.0.0",
"vue-tsc": "^2.2.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"vue-demi"
]
}
}