-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 880 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 880 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
28
{
"name": "kabaehr.github.io",
"version": "1.0.0",
"description": "Personal Blog",
"main": "index.js",
"scripts": {
"watch:eleventy": "npx @11ty/eleventy --serve",
"watch:sass": "npx sass ./assets/scss:_site/assets/css --watch",
"start": "npm run watch:eleventy & npm run watch:sass",
"build": "npx @11ty/eleventy & npx sass ./assets/scss:_site/assets/css"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kabaehr/kabaehr.github.io.git"
},
"author": "Katharina Baehr",
"license": "MIT",
"bugs": {
"url": "https://github.com/kabaehr/kabaehr.github.io/issues"
},
"homepage": "https://github.com/kabaehr/kabaehr.github.io#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"sass": "^1.64.0"
}
}