-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.42 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
{
"name": "markdown-blog",
"version": "1.14.13",
"main": "index.js",
"homepage": "https://bhznjns.github.io/",
"repository": "https://github.com/BHznJNs/bhznjns.github.io",
"type": "module",
"scripts": {
"preview": "node ./builder/scripts/preview.js",
"watch": "node ./builder/scripts/watch.js",
"build": "npm run indexing && npm run ssr && node ./builder/scripts/build.js",
"ssr": "node ./builder/scripts/ssr/index.js",
"indexing": "node ./builder/scripts/indexing/index.js",
"count": "node ./builder/scripts/count/index.js",
"backup": "node ./builder/scripts/backup.js",
"restore": "node ./builder/scripts/restore.js",
"dev": "rollup --watch --config builder/rollup.config.js",
"compress": "rollup --config builder/rollup.config.js",
"test": "mocha ./builder/test/*.test.js ./builder/test/*/*.test.js"
},
"author": "BHznJNs",
"license": "CC-BY-4.0",
"dependencies": {
"chokidar": "^4.0.3",
"electron": "^28.2.0",
"express": "^4.21.2",
"html2canvas": "^1.4.1",
"utimes": "^5.2.1",
"ws": "^8.18.0"
},
"devDependencies": {
"@rollup/plugin-dynamic-import-vars": "^2.1.2",
"@rollup/plugin-terser": "^0.4.4",
"autoprefixer": "^10.4.16",
"cssnano": "^6.0.2",
"mocha": "^10.2.0",
"postcss": "^8.4.32",
"postcss-import": "^15.1.0",
"rollup": "^4.9.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2"
}
}