-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
56 lines (56 loc) · 1.96 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
{
"name": "moderncss-dot-dev",
"version": "0.2.0",
"description": "",
"main": "index.html",
"scripts": {
"social-images": "eleventy-social-images --siteName 'ModernCSS' --outputDir public --dataFile social/pages.json --imageDir img/social --templatePath social/template.html --stylesPath public/css/social-template.css",
"tokens": "npx a11y-color-tokens --outputDirPath='src/sass' --colorTokensPath='_color-tokens.js' --no-compatibilityDocs",
"watch:sass": "sass --no-source-map --watch src/sass:public/css",
"watch:eleventy": "eleventy --serve --quiet",
"build:sass": "sass --no-source-map src/sass:public/css",
"build:eleventy": "eleventy",
"postbuild": "postcss public/css/*.css -u postcss-logical autoprefixer cssnano -r --no-map",
"start": "npm-run-all tokens build:sass --parallel watch:*",
"build": "npm-run-all tokens build:sass build:eleventy social-images"
},
"repository": {
"type": "git",
"url": "git+https://github.com/5t3ph/moderncss-dot-dev.git"
},
"keywords": [],
"author": "5t3ph",
"license": "ISC",
"bugs": {
"url": "https://github.com/5t3ph/moderncss-dot-dev/issues"
},
"homepage": "https://moderncss.dev",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11tyrocks/eleventy-plugin-open-in-codepen": "^1.0.0",
"a11y-color-tokens": "^0.7.0",
"autoprefixer": "^10.4.19",
"cssnano": "^6.1.2",
"dotenv": "^16.4.5",
"luxon": "^3.4.4",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^8.6.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"postcss-logical": "^7.0.1",
"sass": "^1.75.0",
"terser": "^5.30.3"
},
"browserslist": [
"> 0.5%",
"not IE 11"
],
"dependencies": {
"@11tyrocks/eleventy-plugin-social-images": "^0.4.1",
"@netlify/functions": "^2.6.0",
"eleventy-plugin-toc": "^1.1.5"
}
}