generated from 11ty/eleventy-base-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "tylen-st-hilaire-portfolio-site",
"version": "1.0.1",
"description": "Source code for tylensthilaire.com.",
"homepage": "https://tylensthilaire.com",
"scripts": {
"build": "npm run clean && eleventy",
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"start": "run-p serve watch:css",
"debug": "DEBUG=* eleventy",
"scss": "node-sass --output-style compressed -o css scss",
"watch:css": "onchange 'scss' -- npm run scss",
"clean": "rm -rf _site/*"
},
"repository": {
"type": "git",
"url": "git://github.com/tylensthilaire/portfolio.git"
},
"author": {
"name": "Tylen St Hilaire",
"email": "[email protected]",
"url": "https://tylensthilaire.com"
},
"license": "MIT OR CC BY-SA 4.0",
"bugs": {
"url": "https://github.com/tylensthilaire/portfolio/issues"
},
"dependencies": {},
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"luxon": "^1.21.3",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.5",
"markdown-it-footnote": "^3.0.2",
"node-sass": "^5.0.0",
"npm-run-all": "^4.1.5",
"onchange": "^7.1.0"
}
}