-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 1.59 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
{
"name": "hexo-myadmin",
"version": "1.1.0",
"description": "a hexo dashboard plugin, for live blog server.",
"keywords": [
"hexo",
"admin",
"dashboard",
"plugin",
"vue3",
"element-plus"
],
"repository": {
"type": "git",
"url": "git+https://github.com/thesadabc/hexo-myadmin.git"
},
"author": "thesadabc",
"license": "MIT",
"bugs": {
"url": "https://github.com/thesadabc/hexo-myadmin/issues"
},
"homepage": "https://github.com/thesadabc/hexo-myadmin#readme",
"engines": {
"node": ">= 12.0.0"
},
"main": "./server/index.js",
"scripts": {
"app:dev": "vite app --host",
"app:build": "vite build app",
"app:lint": "eslint app --ext .vue --ext .js --fix",
"server:lint": "eslint server --ext .js --fix"
},
"dependencies": {
"@codemirror/language-data": "^6.3.1",
"@codemirror/theme-one-dark": "^6.1.2",
"@element-plus/icons-vue": "^2.1.0",
"@vitejs/plugin-vue": "^4.3.4",
"axios": "^1.5.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"codemirror": "^6.0.1",
"connect-query": "^1.0.0",
"dateformat": "^5.0.3",
"director": "^1.2.8",
"element-plus": "^2.3.12",
"express-session": "^1.17.3",
"serve-static": "^1.15.0",
"vue": "^3.3.4",
"vue-codemirror": "^6.1.1",
"vue-router": "^4.2.4"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.3",
"@vue/eslint-config-prettier": "^8.0.0",
"eslint": "^8.48.0",
"eslint-plugin-vue": "^9.17.0",
"pre-commit": "^1.2.2",
"vite": "^4.4.9"
},
"pre-commit": [
"app:lint",
"server:lint"
]
}