generated from 11ty/eleventy-base-blog
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 2.5 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
58
59
60
61
62
63
64
65
66
67
{
"name": "eleventy-base-blog",
"version": "5.0.2",
"description": "A starter repository for a blog web site using the Eleventy static site generator.",
"repository": {
"type": "git",
"url": "git://github.com/11ty/eleventy-base-blog.git"
},
"author": {
"name": "Zach Leatherman",
"email": "zachleatherman@gmail.com",
"url": "https://zachleat.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/11ty/eleventy-base-blog/issues"
},
"homepage": "https://github.com/11ty/eleventy-base-blog#readme",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-navigation": "^0.1.6",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"autoprefixer": "^9.8.8",
"chokidar-cli": "^1.2.2",
"chrome-aws-lambda": "^9.1.0",
"is-wsl": "^2.2.0",
"luxon": "^1.28.1",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.5",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss": "^6.0.22",
"postcss-cli": "^6.1.2",
"postcss-loader": "^6.2.1",
"puppeteer": "^10.4.0",
"puppeteer-core": "^10.4.0",
"yargs-parser": "^20.2.9"
},
"scripts": {
"build": "eleventy",
"start": "eleventy --serve --quiet --incremental",
"serve": "npm run start",
"write": "npm run start",
"debug": "DEBUG=* eleventy",
"dev": "MY_ENVIRONMENT=dev run-p write sass:dev js:dev",
"dev-sass": "MY_ENVIRONMENT=dev run-p write sass:dev",
"prod": "npm run sass:prod && npm run js:build && npm run build",
"sass:dev": "npm run sass && npm-run-all sass-dev:*",
"sass:prod": "npm run buildData && npm run sass && npm-run-all -p sass-prod:*",
"sass": "node-sass --output-style compressed _sass/ -o assets/css",
"sass-copy": "cp assets/css/main.css _site/assets/css/",
"sass-dev:watch": "chokidar '_sass/**/**/**/*.scss' -c 'npm run sass && npm run sass-copy'",
"sass-prod:autoprefixer": "postcss assets/css/*.css --use autoprefixer --no-map -d assets/css",
"js:dev": "npm run js:build && npm run js:watch",
"js:watch": "chokidar '_javascript/*.js' -c \"npm run js:build && npm run js-copy\"",
"js:build": "cat _javascript/*.js > assets/javascript/main.js",
"js-copy": "cp assets/javascript/main.js _site/assets/javascript/",
"buildData": "node _scripts/buildApiData",
"buildSocialImages": "node _scripts/buildSocialImages"
},
"dependencies": {
"eleventy-plugin-footnotes": "^0.10.0",
"moment": "^2.29.4",
"node-fetch": "^2.6.12"
}
}