generated from 5t3ph/11ty-netlify-jumpstart
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.76 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
{
"name": "11ty-netlify-jumpstart",
"version": "1.0.2",
"description": "Quickly launch an 11ty-generated static site. Includes a minimal Sass framework, and generated sitemap, RSS feed, and social share preview images.",
"scripts": {
"token:goron": "goron -out src/sass/tokens.css",
"token:rename": "node rename.js",
"tokens": "npm-run-all --sequential token:*",
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve",
"watch:js": "parcel watch",
"build:sass-site": "sass --no-source-map src/sass/style.scss public/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",
"build:js": "parcel build",
"postbuild": "postcss public/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 build:js social-images",
"lint": "stylelint 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss'",
"lint:fix": "stylelint --fix 'src/sass/**/*.scss' 'src/sass/**/**/*.scss' 'src/sass/**/**/**/*.scss'",
"social-images": "eleventy-social-images --outputDir public --dataFile social/pages.json --templatePath social/template.html --stylesPath social/sotemplate.css",
"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": "^2.0.0",
"@11ty/eleventy-img": "^1.0.0",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.2",
"@11tyrocks/eleventy-plugin-social-images": "^0.2.0",
"autoprefixer": "^10.3.7",
"cross-env": "^7.0.3",
"cssnano": "^5.0.8",
"dotenv": "^10.0.0",
"emoji-regex": "^10.0.0",
"goron": "^0.1.1",
"luxon": "^2.0.2",
"markdown-it": "^12.2.0",
"markdown-it-anchor": "^8.3.1",
"npm-run-all": "^4.1.5",
"parcel": "^2.6.2",
"postcss-cli": "^9.0.1",
"sass": "^1.42.1",
"stylelint": "^13.13.1",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0",
"stylelint-selector-bem-pattern": "^2.1.1"
},
"browserslist": [
"ie 8",
"Chrome 26",
"Firefox 16",
"Safari 7"
],
"targets": {
"js": {
"source": [
"./src/js/script.js"
],
"distDir": "./public/js"
}
}
}