-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.61 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": "blog",
"description": "heyhoe's blog",
"repository": "https://github.com/h3y6e/blog",
"author": "heyhoe",
"license": "MIT",
"private": true,
"browserslist": [
"last 2 versions",
"> 2%",
"not dead"
],
"scripts": {
"dev": "run-p dev:*",
"prod": "run-s prod:*",
"dev:css": "postcss theme/css/a5ebec.pcss --dir _css --ext css -w",
"prod:css": "postcss theme/css/a5ebec.pcss --dir _css --ext css --no-map",
"dev:swc": "swc theme/scripts/*.js -d _libs -w",
"prod:swc": "swc theme/scripts/*.js -d _libs",
"dev:franklin": "julia --project=. -O0 -e 'using Franklin;serve(clear=true, host=\"0.0.0.0\")'",
"prod:franklin": "julia --project=. -e 'using Franklin;optimize()'",
"format": "prettier --write . -u",
"lint": "textlint posts/*.md",
"lint:fix": "textlint --fix posts/*.md",
"ogimage": "node ogimage.mjs"
},
"devDependencies": {
"@cloudinary/url-gen": "1.21.0",
"@textlint-ja/textlint-rule-no-synonyms": "1.3.0",
"chokidar": "3.6.0",
"prettier": "3.3.3",
"sudachi-synonyms-dictionary": "14.0.0",
"textlint": "14.2.0",
"textlint-filter-rule-allowlist": "4.0.0",
"textlint-filter-rule-comments": "1.2.2",
"textlint-rule-preset-ja-spacing": "2.4.3",
"textlint-rule-preset-ja-technical-writing": "10.0.1",
"textlint-rule-prh": "6.0.0"
},
"dependencies": {
"@swc/cli": "^0.4.0",
"@swc/core": "^1.3.83",
"npm-run-all2": "^6.0.0",
"postcss": "^8.4.29",
"postcss-cli": "^11.0.0",
"postcss-color-mod-function": "^3.0.3",
"postcss-import": "^16.0.0",
"postcss-preset-env": "^10.0.0"
}
}