-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 739 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 739 Bytes
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
{
"name": "webprop",
"version": "1.0.0",
"type": "module",
"scripts": {
"build:sass": "sass styles:_site/styles --no-source-map --style=compressed --update",
"watch:sass": "sass styles:_site/styles --update --watch",
"watch:eleventy": "eleventy --serve",
"build:eleventy": "eleventy",
"dev": "npm-run-all build:sass --parallel watch:*",
"build": "run-s build:sass build:eleventy"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.3",
"markdown-it": "^14.1.0",
"npm-run-all": "^4.1.5",
"sass": "^1.83.4"
},
"devDependencies": {
"@shikijs/markdown-it": "^2.3.2"
}
}