-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
50 lines (50 loc) · 1.47 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
{
"name": "jace-11ty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"config": {
"path": "./src/post/"
},
"scripts": {
"watch:eleventy": "eleventy --serve --watch",
"watch:sass": "sass --no-source-map --watch src/sass:_site/css",
"build:eleventy": "eleventy",
"build:sass": "sass --no-source-map src/sass:_site/css",
"postbuild": "postcss _site/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "npm-run-all build:sass --parallel watch:*",
"build": "npm-run-all build:sass build:eleventy",
"buildImages": "npx ./generators/buildImages.js",
"downloadImage": "npx ./generators/downloadImage.js",
"g": "npx ./generators/generic.js",
"generate": "npx ./generators/generic.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-img": "^0.8.3",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"autoprefixer": "^9.8.6",
"clean-css": "^5.1.2",
"cross-env": "^7.0.3",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"markdown-it": "^12.3.2",
"markdown-it-toc-and-anchor": "^4.2.0",
"netlify-cli": "^3.19.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.6",
"postcss-cli": "^8.3.1",
"sass": "^1.32.7",
"sharp": "^0.28.1"
},
"browserslist": [
"last 2 versions"
],
"dependencies": {
"@kevingimbel/eleventy-plugin-mermaid": "^1.1.0"
}
}