-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.94 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
{
"name": "handmade-blog",
"version": "1.0.0",
"description": "A static blog generator for people who want to start a blog quickly",
"repository": {
"type": "git",
"url": "https://github.com/parksb/handmade-blog.git"
},
"main": "index.js",
"scripts": {
"start": "npm run build:file && live-server ./app/public/ --no-browser",
"watch": "tsx ./tools/watch.ts",
"publish": "tsx ./tools/publish.ts",
"build": "bash ./tools/build.sh",
"deploy": "bash ./tools/deploy.sh",
"build:file": "mkdir -p ./app/public/styles && cp -rf ./app/styles/* ./app/public/styles/ && mkdir -p ./app/public/assets && cp -rf ./app/assets/* ./app/public/assets/ && mkdir -p ./app/public/images && cp -rf ./images/* ./app/public/images/"
},
"author": "parksb",
"license": "MIT",
"bugs": {
"url": "https://github.com/parksb/handmade-blog/issues"
},
"homepage": "https://github.com/parksb/handmade-blog#readme",
"dependencies": {
"dayjs": "^1.11",
"highlight.js": "^11.5",
"katex": "^0.15",
"mermaid": "^9.1"
},
"devDependencies": {
"@types/ejs": "^3.1",
"@types/highlight.js": "^9.12",
"@types/markdown-it": "12.2",
"@types/node": "^17.0",
"@typescript-eslint/eslint-plugin": "^5.23",
"@typescript-eslint/parser": "^5.23",
"clean-css-cli": "^5.6.0",
"ejs": "^3.1",
"eslint": "^8.15",
"eslint-config-airbnb-typescript": "^17.0",
"eslint-plugin-import": "^2.26",
"html-minifier": "^4.0.0",
"http-server": "^14.1.0",
"live-server": "^1.1.0",
"markdown-it": "^13.0",
"markdown-it-anchor": "^8.6",
"markdown-it-container": "^3.0",
"markdown-it-footnote": "^3.0",
"markdown-it-image-lazy-loading": "^1.2",
"markdown-it-inline-comments": "^1.0",
"markdown-it-mermaid": "^0.2",
"markdown-it-table-of-contents": "^0.6",
"markdown-it-texmath": "^0.9",
"ts-node": "^10.7",
"tsx": "^3.12.7",
"typescript": "^4.6",
"watcher": "^2.2.2"
}
}