-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.77 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
{
"name": "michaelbishop",
"version": "0.4.1",
"description": "This will be my new blog & Internet home.",
"main": "index.js",
"scripts": {
"dev:clean": "rm -rf _site && mkdir -p _site/assets",
"dev:11ty": "eleventy --port 8080 --serve --incremental",
"dev:css": "postcss assets/css/index.css -m -o _site/assets/css/main.css -w",
"dev:watchers": "run-p dev:css dev:11ty",
"dev": "run-s dev:clean dev:watchers",
"prod": "run-s prod:css prod:11ty",
"prod:css": "postcss assets/css/index.css -m -o _site/assets/css/main.css",
"prod:11ty": "eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miklb/michaelbishop.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/miklb/michaelbishop/issues"
},
"homepage": "https://github.com/miklb/michaelbishop#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.0",
"@11ty/eleventy-fetch": "^4.0.0",
"@11ty/eleventy-img": "^3.1.8",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"cssnano": "^6.0.1",
"dotenv": "^16.3.1",
"eleventy-plugin-metagen": "^1.7.11",
"markdown-it": "^13.0.2",
"markdown-it-footnote": "^3.0.3",
"npm-run-all": "^4.1.5",
"outdent": "^0.8.0",
"postcss": "^8.4.16",
"postcss-cli": "^10.1.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-custom-properties": "^13.3.2",
"postcss-import": "^15.1.0",
"postcss-nested": "^6.0.1",
"postcss-preset-env": "^9.3.0"
},
"dependencies": {}
}