forked from ericwbailey/ericwbailey.website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.71 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
53
54
55
56
57
{
"name": "ericwbailey.website",
"description": "Inclusive design advocate, writer, developer, and speaker",
"version": "1.5.38",
"license": "CC-BY-NC-SA-4.0",
"homepage": "https://github.com/ericwbailey/ericwbailey.website/blob/main/README.md",
"author": {
"name": "Eric Bailey",
"email": "[email protected]",
"url": "http://ericwbailey.website"
},
"scripts": {
"watch:sass": "node-sass-chokidar ./source/sass -o ./published --watch",
"watch:eleventy": "eleventy --serve",
"compile:sass": "node-sass-chokidar ./source/sass -o ./published",
"compile:eleventy": "eleventy",
"postbuild": "postcss published/*.css -u autoprefixer cssnano -r",
"start": "npm-run-all compile:sass --parallel watch:*",
"build": "npm-run-all compile:sass compile:eleventy"
},
"repository": {
"type": "git",
"url": "git://github.com/ericwbailey/ericwbailey.website.git"
},
"bugs": {
"url": "https://github.com/ericwbailey/ericwbailey.website/issues",
"email": "[email protected]"
},
"keywords": [
"eric",
"bailey",
"ericwbailey",
"boston",
"design"
],
"browserslist": [
"last 2 versions"
],
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-navigation": "^0.2.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.0",
"autoprefixer": "^9.8.6",
"cross-env": "^7.0.3",
"cssnano": "^5.1.13",
"eleventy-plugin-sass": "^1.1.1",
"luxon": "^1.28.1",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^5.2.5",
"node-sass": "^7.0.0",
"node-sass-chokidar": "^1.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.0.0",
"postcss-cli": "^8.1.0"
}
}