-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.55 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
{
"scripts": {
"clean": "rimraf _site",
"serve": "npm-run-all clean -p serve:*",
"serve:eleventy": "eleventy --serve",
"serve:css": "postcss src/build/css/init.css -o _site/style.css -w",
"serve:admincss": "postcss src/build/css/admin.css -o _site/admin/style.css -w",
"build": "cross-env NODE_ENV=production run-s clean build:*",
"build:eleventy": "eleventy",
"build:css": "postcss src/build/css/init.css -o _site/style.css",
"build:admincss": "postcss src/build/css/admin.css -o _site/admin/style.css"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"autoprefixer": "^10.4.4",
"cross-env": "^7.0.3",
"cssnano": "^5.1.7",
"eleventy-plugin-embed-everything": "^1.14.0",
"eleventy-plugin-heroicons": "^1.0.0",
"eleventy-plugin-metagen": "^1.6.1",
"eleventy-plugin-reading-time": "^0.0.1",
"eleventy-plugin-responsive-images": "^0.0.5",
"esbuild": "^0.14.30",
"js-yaml": "^4.1.0",
"luxon": "^2.3.1",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"markdown-it-replacements": "^1.0.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"postcss-color-mod-function": "^3.0.3",
"postcss-custom-media": "^8.0.0",
"postcss-custom-selectors": "^6.0.0",
"postcss-each": "^1.1.0",
"postcss-easy-import": "^4.0.0",
"postcss-mixins": "^9.0.2",
"postcss-nested": "^5.0.6",
"rimraf": "^3.0.2"
},
"dependencies": {
"hiq": "^4.2.2",
"overlayscrollbars": "^1.13.1"
}
}