-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 KB
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
{
"name": "apearson-website",
"version": "1.0.0",
"private": true,
"scripts": {
"debug": "npm run serve & npm run gen",
"serve": "hexo server",
"build": "npm run build:scripts && hexo generate",
"rebuild": "npm run clean && npm run build",
"clean": "rm -rf public dist .cache db.json",
"gen": "hexo generate -w",
"build:scripts": "esbuild ./src/scripts/main.ts --bundle --sourcemap --minify --target=es6 --outdir=./public/dist"
},
"hexo": {
"version": "6.3.0"
},
"dependencies": {
"chart.js": "^4.4.0",
"chartjs-adapter-date-fns": "^3.0.0",
"date-fns": "^2.30.0",
"encoding": "^0.1.12",
"esbuild": "^0.19.5",
"hexo": "^6.3.0",
"hexo-generator-archive": "^2.0.0",
"hexo-generator-category": "^2.0.0",
"hexo-generator-index": "^3.0.0",
"hexo-generator-tag": "^2.0.0",
"hexo-renderer-ejs": "^2.0.0",
"hexo-renderer-marked": "^6.1.1",
"hexo-renderer-stylus": "^3.0.0",
"hexo-server": "^3.0.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/chart.js": "^2.9.39"
}
}