generated from 5t3ph/11ty-sass-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.59 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
{
"name": "css-buddha",
"version": "0.6.0",
"description": "Artikel rund ums Frontend, hauptsächlich CSS.",
"scripts": {
"clean": "rimraf _site",
"watch:eleventy": "eleventy --watch",
"watch:sass": "sass --watch src/assets/scss:_site/css",
"serve:eleventy": "eleventy --serve",
"serve:sass": "sass src/assets/scss:_site/css",
"build:eleventy": "eleventy",
"build:sass": "sass --no-source-map src/assets/scss:_site/css",
"build": "npm-run-all build:*",
"start": "npm-run-all --parallel serve:eleventy watch:sass"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jensgro/css-buddha"
},
"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.0.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@manustays/eleventy-plugin-codepen-iframe": "^2.0.1",
"@toycode/markdown-it-class": "^1.2.4",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"luxon": "^3.4.4",
"markdown-it": "^14.1.0",
"markdown-it-abbr": "^2.0.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-emoji": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-link-attributes": "^4.0.1",
"markdown-it-mark": "^4.0.0",
"markdown-it-prism": "^2.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"sass": "^1.77.8"
},
"browserslist": [
"last 2 versions"
]
}