-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
28 lines (28 loc) · 928 Bytes
/
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
{
"name": "hotwire_ja",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:everyleaf/hotwire_ja.git",
"author": "akira888 <[email protected]>",
"license": "MIT",
"type": "module",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"del-cli": "^6.0.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-toc-done-right": "^4.2.0",
"npm-run-all": "^4.1.5",
"sass": "^1.81.0"
},
"scripts": {
"serve": "npm-run-all -s clean build:11ty build:css -p watch:** --silent",
"publish": "run-s build:**",
"clean": "del-cli \"_site\"",
"build:11ty": "eleventy --pathprefix=hotwire_ja",
"watch:11ty": "eleventy --serve --quiet",
"build:css": "sass --style=compressed _assets/css/main.scss _site/assets/main.css",
"watch:css": "npm run build:css -- --watch"
}
}