-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 963 Bytes
/
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
{
"name": "smhigley-site",
"version": "1.0.0",
"description": "Personal website of Sarah Higley",
"repository": {
"type": "git",
"url": "[email protected]:smhigley/11ty-site.git"
},
"author": {
"name": "Sarah Higley",
"url": "https://sarahmhigley.com/"
},
"scripts": {
"build": "eleventy",
"compile": "npm run sass && eleventy",
"sass": "sass scss/main.scss assets/site.css --style=compressed",
"serve": "eleventy --serve",
"start": "concurrently 'npm run sass -- --watch' 'npm run serve'",
"watch": "eleventy --watch"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"concurrently": "^5.3.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^5.2.4",
"sass": "^1.22.9"
},
"license": "MIT",
"dependencies": {
"normalize.css": "^8.0.1"
}
}