forked from YunYouJun/cook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"type": "module",
"version": "1.2.2",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npm run convert && nuxt build",
"build:static": "npm run convert && nuxt generate",
"convert": "tsx scripts/convert.ts",
"dev": "nuxt dev --host",
"dev:pwa": "VITE_PLUGIN_PWA=true nuxi dev",
"generate": "nuxt generate",
"start:generate": "npx serve .output/public",
"start": "node .output/server/index.mjs",
"lint": "eslint .",
"postinstall": "nuxt prepare && npm run convert",
"preview": "serve dist",
"preview-https": "serve dist",
"release": "bumpp",
"test": "vitest",
"typecheck": "vue-tsc --noEmit"
},
"dependencies": {
"dayjs": "^1.11.10",
"vue-about-me": "^1.2.7"
},
"devDependencies": {
"@antfu/eslint-config": "^2.16.0",
"@headlessui/vue": "^1.7.21",
"@iconify-json/carbon": "^1.1.31",
"@iconify-json/fe": "^1.1.10",
"@iconify-json/gg": "^1.1.9",
"@iconify-json/ic": "^1.1.17",
"@iconify-json/mdi": "^1.1.66",
"@iconify-json/ri": "^1.1.20",
"@iconify-json/twemoji": "^1.1.15",
"@nuxt/devtools": "^1.2.0",
"@nuxt/test-utils": "^3.12.1",
"@nuxtjs/color-mode": "^3.4.1",
"@pinia/nuxt": "^0.5.1",
"@pinia/testing": "^0.1.3",
"@unocss/eslint-config": "^0.59.4",
"@unocss/nuxt": "^0.59.4",
"@vite-pwa/nuxt": "^0.6.0",
"@vue/test-utils": "^2.4.5",
"@vueuse/nuxt": "^10.9.0",
"@yunlefun/vue": "^0.1.1",
"@zadigetvoltaire/nuxt-gtm": "^0.0.13",
"bumpp": "^9.4.0",
"consola": "^3.2.3",
"dexie": "^4.0.4",
"eslint": "^9.1.1",
"eslint-plugin-format": "^0.1.1",
"fake-indexeddb": "^5.0.2",
"happy-dom": "^14.7.1",
"jsdom": "^24.0.0",
"nuxt": "3.11.2",
"nuxt-fix-ofetch": "^0.0.14",
"nuxt-vitest": "^0.11.5",
"pinia": "^2.1.7",
"sass": "^1.75.0",
"serve": "^14.2.3",
"star-markdown-css": "^0.4.2",
"tsx": "^4.7.3",
"typescript": "^5.4.5",
"unocss": "^0.59.4",
"vitest": "^1.5.2",
"vue-tsc": "^2.0.14"
}
}