-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.36 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
{
"name": "devblog",
"version": "2.0.0",
"description": "Personal dev blog",
"main": "index.js",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass/styles.scss:public/css/styles.css",
"watch:js": "rollup -c -w --bundleConfigAsCjs",
"watch:eleventy": "eleventy --serve",
"build:sass": "sass --no-source-map src/sass/styles.scss:public/css/styles.css",
"build:js": "ROLLUP_WATCH=false rollup -c --bundleConfigAsCjs",
"build:eleventy": "eleventy",
"optimize:css": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"postbuild": "postcss public/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy build:js"
},
"keywords": [
"11ty",
"sass",
"html"
],
"author": "Olivia Coumans",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-plugin-rss": "2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "5.0.0",
"@rollup/plugin-terser": "^0.4.3",
"autoprefixer": "10.4.20",
"cssnano": "7.0.6",
"luxon": "3.5.0",
"npm-run-all2": "7.0.2",
"postcss": "8.4.49",
"postcss-cli": "11.0.0",
"rollup": "4.30.1",
"sass": "1.83.1"
},
"dependencies": {
"eleventy-plugin-toc": "^1.1.5",
"markdown-it-anchor": "^9.0.0"
}
}