-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
50 lines (50 loc) · 1.54 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
{
"name": "cyanblog",
"version": "",
"type": "module",
"scripts": {
"build:hexo": "hexo generate",
"clean:hexo": "hexo clean",
"dev:hexo": "hexo server -i 0.0.0.0",
"build:panel": "cd CyanAccPanel && vite build",
"dev:panel": "cd CyanAccPanel && vite",
"clean:panel": "cd CyanAccPanel && rm -rf dist",
"build:cyanacc": "npx webpack --config cyanacc-webpack.config.cjs",
"dev:cyanacc": "npx webpack serve --config cyanacc-webpack.config.cjs",
"dev":"http-server -p 48080 ./public",
"build": "npm run build:hexo && npm run build:panel && npm run build:cyanacc",
"clean": "npm run clean:hexo && npm run clean:panel"
},
"hexo": {
"version": "6.3.0"
},
"dependencies": {
"@chenyfan/cache-db": "1.1.5",
"@chenyfan/cdnobject": "^0.0.0-beta-002",
"hexo": "^6.3.0",
"hexo-abbrlink": "^2.2.1",
"hexo-generator-archive": "^2.0.0",
"hexo-generator-category": "^2.0.0",
"hexo-generator-index": "^3.0.0",
"hexo-generator-search": "^2.4.3",
"hexo-generator-sitemap": "^3.0.1",
"hexo-generator-tag": "^2.0.0",
"hexo-renderer-ejs": "^2.0.0",
"hexo-renderer-marked": "^6.0.0",
"hexo-renderer-stylus": "^3.0.0",
"hexo-server": "^3.0.0",
"monaco-editor": "^0.44.0",
"notyf": "^3.10.0",
"vue": "^3.3.4",
"vue-router": "^4.2.5",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.2.3",
"autoprefixer": "^10.4.16",
"postcss": "^8.4.31",
"tailwindcss": "^3.3.5",
"vite": "^4.4.5"
}
}