-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2 KB
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
{
"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",
"build:local": "LOCAL_DEV=true npm run build"
},
"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": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@11tyrocks/eleventy-plugin-open-in-codepen": "^1.0.0",
"@11tyrocks/eleventy-plugin-social-images": "^1.1.0",
"a11y-color-tokens": "^0.7.0",
"autoprefixer": "^10.4.21",
"cssnano": "^7.1.1",
"dotenv": "^17.2.1",
"eleventy-plugin-toc": "^1.1.5",
"luxon": "^3.7.1",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"postcss-logical": "^8.1.0",
"sass": "^1.91.0",
"terser": "^5.43.1"
},
"browserslist": [
"> 0.5%",
"not dead"
],
"dependencies": {
"puppeteer": "24.15.0"
}
}