-
-
Notifications
You must be signed in to change notification settings - Fork 235
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"type": "module",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"build": "nuxi build",
"dev:pwa": "VITE_PLUGIN_PWA=true nuxi dev",
"dev": "nuxi dev",
"generate": "nuxi generate",
"prepare": "nuxi prepare",
"start": "node .output/server/index.mjs",
"start:generate": "npx serve .output/public",
"lint": "eslint .",
"typecheck": "vue-tsc --noEmit"
},
"devDependencies": {
"@antfu/eslint-config": "^3.14.0",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/twemoji": "^1.2.2",
"@nuxt/devtools": "^2.0.0-beta.2",
"@nuxt/eslint": "^0.7.5",
"@nuxtjs/color-mode": "^3.5.2",
"@pinia/nuxt": "^0.9.0",
"@unocss/eslint-config": "^65.4.2",
"@unocss/nuxt": "^65.4.2",
"@vite-pwa/nuxt": "^0.10.6",
"@vueuse/nuxt": "^12.4.0",
"consola": "^3.4.0",
"eslint": "^9.18.0",
"eslint-plugin-format": "^1.0.1",
"nuxt": "^3.15.2",
"pinia": "^2.3.0",
"typescript": "^5.7.3",
"vue-tsc": "^2.2.0"
},
"resolutions": {
"@nuxt/devtools": "2.0.0-beta.2",
"unplugin": "^2.1.2",
"vite": "^6.0.7"
}
}