-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
75 lines (75 loc) · 1.9 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
74
75
{
"name": "chris.me",
"type": "module",
"private": true,
"packageManager": "pnpm@9.15.1",
"description": "Chris' blog build with Nuxt3.",
"author": "Chris <https://github.com/zyyv>",
"homepage": "https://github.com/zyyv/chris.me#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/zyyv/chris.me.git"
},
"bugs": {
"url": "https://github.com/zyyv/chris.me/issues"
},
"keywords": [
"blog",
"vue3",
"nuxt3",
"unocss"
],
"scripts": {
"dev": "nuxt dev -o",
"build": "nuxt build",
"preview": "nuxt preview",
"lint": "eslint .",
"postinstall": "nuxt prepare",
"typecheck": "tsc --noEmit",
"taze": "taze minor -wIr"
},
"dependencies": {
"@nuxt/content": "3.0.0-alpha.8",
"blurhash": "^2.0.5",
"dayjs": "^1.11.13",
"unsplash-js": "^7.0.19",
"vue-flow-layout": "^0.1.1"
},
"devDependencies": {
"@antfu/eslint-config": "3.11.2",
"@iconify-json/akar-icons": "^1.2.2",
"@iconify-json/carbon": "^1.2.5",
"@iconify-json/fluent-emoji": "^1.2.2",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/vscode-icons": "^1.2.6",
"@iconify/utils": "^2.2.1",
"@nuxtjs/color-mode": "^3.5.2",
"@types/fs-extra": "^11.0.4",
"@unocss/nuxt": "^0.65.2",
"@unocss/preset-mini": "^0.65.2",
"@vueuse/nuxt": "^11.3.0",
"eslint": "^9.17.0",
"esno": "^4.8.0",
"fs-extra": "^11.2.0",
"lint-staged": "^15.2.11",
"node-fetch": "^3.3.2",
"nuxt": "3.14.1592",
"octokit": "^4.0.2",
"postcss-import": "^16.1.0",
"postcss-url": "^10.1.3",
"simple-git-hooks": "^2.11.1",
"taze": "^0.18.0",
"typescript": "5.7.2",
"unocss": "^0.65.2",
"unocss-preset-useful": "^0.9.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md}": [
"eslint --cache --fix"
]
}
}