-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.27 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
{
"name": "zxblog",
"private": true,
"version": "2.0.0",
"packageManager": "[email protected]",
"type": "module",
"scripts": {
"build": "nuxt build --dotenv .env.production",
"dev": "nuxt dev --dotenv .env.development",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"lint": "eslint . --fix",
"format": "prettier --write .",
"prepare": "husky"
},
"lint-staged": {
"*.{vue,js,jsx,cjs,mjs}": [
"eslint --fix"
],
"*": [
"prettier --write"
]
},
"dependencies": {
"@iconify-json/heroicons": "^1.2.0",
"@iconify-json/ic": "^1.2.0",
"@nuxt/ui": "^2.18.4",
"@xtthaop/markdown-it-katex": "2.0.5",
"animate.css": "^4.1.1",
"dayjs": "^1.11.11",
"dayjs-nuxt": "^2.1.11",
"highlight.js": "^11.9.0",
"markdown-it": "^14.1.0",
"normalize.css": "^8.0.1",
"nuxt": "^3.13.0",
"qrcode": "^1.5.4",
"vue": "latest",
"weixin-js-sdk": "^1.6.5"
},
"devDependencies": {
"@iconify-json/uil": "^1.2.1",
"@nuxt/eslint": "^0.5.5",
"eslint": "^9.9.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"sass": "^1.77.8"
}
}