-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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
{
"type": "module",
"version": "1.1.0",
"private": true,
"packageManager": "pnpm@9.2.0",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"upgrade": "nlx taze major -w",
"cleanup": "nlx nuxi@latest cleanup",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "npx case-police \"**/*.md\" --fix",
"release": "npx bumpp --commit --tag --push"
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"dayjs": "^1.11.11"
},
"devDependencies": {
"@antfu/eslint-config": "^2.20.0",
"@iconify-json/ri": "^1.1.20",
"@nuxt/content": "2.12.1",
"@nuxt/devtools": "^1.3.3",
"@nuxt/image": "^1.7.0",
"@nuxtjs/color-mode": "^3.4.1",
"@types/fs-extra": "^11.0.4",
"@types/markdown-it": "^14.1.1",
"@types/node": "^20.14.2",
"@unocss/eslint-plugin": "^0.60.4",
"@unocss/nuxt": "^0.60.4",
"@unocss/preset-mini": "^0.60.4",
"@vite-pwa/nuxt": "^0.8.0",
"@vue-macros/nuxt": "^1.9.36",
"@vueuse/core": "^10.10.0",
"@vueuse/nuxt": "^10.10.0",
"consola": "^3.2.3",
"dayjs-nuxt": "^2.1.9",
"eslint": "^9.4.0",
"eslint-plugin-format": "^0.1.1",
"feed": "^4.2.2",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"lint-staged": "^15.2.5",
"markdown-it": "^14.1.0",
"nuxt": "3.11.2",
"simple-git-hooks": "^2.11.1",
"std-env": "^3.7.0",
"typescript": "^5.4.5",
"unocss-preset-scrollbar": "^0.3.1"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}