-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.43 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
{
"name": "11ty-starter",
"version": "2.2.1",
"description": "Minimal starter-kit for 11ty.",
"scripts": {
"build:sass": "sass --no-source-map src/assets/scss/main.scss:_site/assets/css/main.css",
"build:eleventy": "eleventy",
"clean": "rimraf _site",
"serve:eleventy": "eleventy --serve",
"serve:sass": "sass src/assets/scss/main.scss:_site/assets/css/styles.css",
"watch:eleventy": "eleventy --watch",
"watch:sass": "sass --watch src/assets/scss/main.scss:_site/assets/css/main.css",
"build": "cross-env NODE_ENV=production npm-run-all build:*",
"start": "cross-env NODE_ENV=development npm-run-all --parallel serve:eleventy watch:sass"
},
"keywords": [],
"author": {
"name": "Jens Grochtdreis",
"email": "[email protected]",
"url": "https://grochtdreis.de"
},
"license": "ISC",
"devDependencies": {
"@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",
"@toycode/markdown-it-class": "^1.2.4",
"cross-env": "^7.0.3",
"luxon": "^3.4.4",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^8.6.7",
"markdown-it-footnote": "^4.0.0",
"markdown-it-mark": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sass": "^1.79.4"
}
}