-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 917 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 917 Bytes
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
{
"name": "org-blog",
"version": "1.0.0",
"description": "Emacs Org-mode blog with modern tooling",
"private": true,
"scripts": {
"build": "./build.sh",
"build:prod": "make build-prod",
"serve": "cd public && python3 -m http.server",
"minify:js": "terser static/js/blog.js -o static/js/blog.min.js -c -m",
"minify:css": "postcss static/css/blog.css -o static/css/blog.min.css --use cssnano",
"minify": "npm run minify:js && npm run minify:css",
"format": "prettier --write \"**/*.{js,css,json,md,yml,yaml}\" \"!public/**\" \"!*.min.*\"",
"format:check": "prettier --check \"**/*.{js,css,json,md,yml,yaml}\" \"!public/**\" \"!*.min.*\""
},
"devDependencies": {
"cssnano": "6.0.1",
"postcss": "8.4.31",
"postcss-cli": "10.1.0",
"prettier": "3.6.2",
"prettier-plugin-sh": "0.18.0",
"terser": "5.24.0"
},
"engines": {
"node": ">=16.0.0"
}
}