-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.26 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
60
61
62
63
64
65
66
67
{
"name": "eleventy-template-bliss",
"version": "2.4.3",
"private": true,
"scripts": {
"prebuild": "npm run clean",
"build:eleventy": "cross-env ELEVENTY_ENV=production npx @11ty/eleventy --quiet",
"prebuild-gh-pages": "npm run clean",
"build-gh-pages": "npm run build:sass; npm run build:eleventy -- --pathprefix=/",
"postbuild-gh-pages": "npm run minify:js",
"build": "npm-run-all build:*",
"postbuild": "npm run minify:js",
"clean": "rimraf _site",
"predev": "npm run clean",
"dev": "cross-env ELEVENTY_ENV=development npm run build:sass && npm-run-all --parallel watch:*",
"debug": "cross-env DEBUG=Eleventy* npm run dev",
"watch:eleventy": "npx @11ty/eleventy --serve",
"format": "npm run format:js",
"format:js": "prettier --check *.js",
"formatfix:js": "prettier --write *.js",
"lint": "npm-run-all lint:*",
"lintfix": "npm-run-all lintfix:*",
"lint:js": "eslint .",
"minify:js": "node ./build-scripts/minify",
"lintfix:js": "eslint . --fix",
"watch:sass": "sass --no-source-map --watch ./src/styles:_site/css --style compressed",
"build:sass": "sass --no-source-map src/styles:_site/css --style compressed",
"sort-package-json": "sort-package-json",
"start": "npm run dev"
},
"dependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-img": "4.0.2",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"cross-env": "^7.0.3",
"crypto-js": "^4.2.0",
"eleventy-plugin-emoji": "^1.1.0",
"eleventy-plugin-pwa-v2": "^1.0.1",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"html-minifier-terser": "^7.2.0",
"jsdom": "^24.0.0",
"jsonminify": "^0.4.2",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^4.0.0",
"minify-xml": "^4.4.1",
"node-html-parser": "^6.1.13",
"npm-run-all": "^4.1.5",
"pre-commit": "^1.2.2",
"prettier": "^3.2.5",
"require-dir": "^1.2.0",
"rimraf": "^5.0.5",
"sass": "^1.74.1",
"sharp": "0.33.3",
"slugify": "^1.6.6",
"sort-package-json": "^2.10.0",
"terser": "^5.30.3"
},
"pre-commit": [
"format",
"lint"
]
}