This repository has been archived by the owner on Sep 1, 2024. It is now read-only.
generated from voightco/static-site-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "static-site-starter",
"version": "1.0.0",
"description": " A boilerplate for building static websites ",
"main": "index.js",
"scripts": {
"build:js": "rollup -c rollup.config.js",
"build:css": "postcss css/base.css -o _site/css/style.css",
"build:11ty": "npx eleventy",
"watch:css": "postcss css/base.css -o css/style.css -w --verbose",
"watch:js": "rollup -c rollup.config.js -w",
"watch:11ty": "npx eleventy --serve --quiet",
"build": "NODE_ENV=production concurrently \"npm:build:*\"",
"dev": "concurrently \"npm:watch:*\"",
"generate-image": "node scripts/libs/generateShareImage.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dandevri/static-site-starter.git"
},
"keywords": [
"static-site",
"boilerplate"
],
"author": "Danny de Vries <[email protected]> (https://dandevri.es)",
"contributors": [
"Danny de Vries <[email protected]> (https://dandevri.es)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/dandevri/static-site-starter/issues"
},
"homepage": "https://github.com/dandevri/static-site-starter#readme",
"devDependencies": {
"@11ty/eleventy": "^0.8.3",
"@11ty/eleventy-navigation": "^0.1.5",
"@11ty/eleventy-plugin-rss": "^1.0.6",
"@fullhuman/postcss-purgecss": "^2.2.0",
"autoprefixer": "^9.5.1",
"concurrently": "^5.3.0",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"eleventy-plugin-reading-time": "0.0.1",
"eslint": "^5.16.0",
"imagemin-cli": "^6.0.0",
"imagemin-mozjpeg": "^8.0.0",
"imagemin-pngquant": "^8.0.0",
"imagemin-svgo": "^7.0.0",
"imagemin-webp": "^5.1.0",
"markdown-it-anchor": "^7.0.0",
"node-fetch": "^2.6.0",
"postcss": "^8.2.4",
"postcss-cli": "^8.3.1",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.1",
"postcss-nested": "^4.1.2",
"postcss-normalize": "^8.0.0",
"postcss-scss": "^2.0.0",
"postcss-simple-vars": "^5.0.2",
"rollup": "^2.38.1",
"rollup-plugin-terser": "^7.0.2",
"stylelint-config-standard": "^18.3.0",
"terser": "^5.5.1",
"uglify-js": "^3.6.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"rules": {
"at-rule-no-unknown": null
}
},
"dependencies": {
"@11ty/eleventy-img": "^0.7.8",
"canvas": "^2.6.1",
"lodash": "^4.17.20",
"luxon": "^1.15.0",
"markdown-it": "^12.0.4"
}
}