forked from titaniumbones/11ty-ntelify-jumpstart
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.47 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
{
"name": "11ty-netlify-jumpstart",
"version": "1.2.0",
"description": "Quickly launch an 11ty-generated static site. Includes a minimal Sass framework, and generated sitemap, RSS feed, and social share preview images.",
"main": "index.html",
"scripts": {
"watch:sass": "sass --no-source-map --watch src/sass:docs/css",
"watch:eleventy": "eleventy --serve --incremental",
"build:sass-site": "sass --no-source-map src/sass/style.scss docs/css/style.css",
"build:sass-social": "sass --no-source-map src/sass/social.scss social/style.css",
"build:sass": "npm-run-all --parallel build:sass-site",
"build:eleventy": "eleventy",
"postbuild": "postcss docs/css/*.css -u autoprefixer cssnano -r --no-map",
"start": "cross-env ELEVENTY_ENV=dev npm-run-all build:sass --parallel watch:*",
"build": "cross-env ELEVENTY_ENV=prod npm-run-all build:sass build:eleventy social-images",
"lint": "stylelint 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss' --custom-syntax postcss-scss",
"lint:fix": "stylelint --fix 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss' --custom-syntax postcss-scss",
"social-images": "eleventy-social-images --outputDir docs --dataFile social/pages.json --templatePath social/template.html",
"bump": "npm --no-git-tag-version version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/11ty-netlify-jumpstart.git"
},
"keywords": [],
"author": "5t3ph",
"license": "ISC",
"bugs": {
"url": "https://github.com/5t3ph/11ty-netlify-jumpstart/issues"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"@11tyrocks/eleventy-plugin-social-images": "^0.4.1",
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"cssnano": "^5.0.15",
"markdown-it": "^12.3.2",
"markdown-it-anchor": "^8.4.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-scss": "^4.0.3",
"sass": "^1.48.0",
"stylelint": "^14.2.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0"
},
"browserslist": [
"> 0.5%",
"not IE 11"
],
"dependencies": {
"eleventy-plugin-embed-everything": "^1.14.0",
"eleventy-plugin-toc": "^1.1.5",
"luxon": "^2.3.1",
"markdown-it-footnote": "^3.0.3"
}
}