-
Notifications
You must be signed in to change notification settings - Fork 405
/
package.json
60 lines (60 loc) · 2.14 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
{
"name": "@pattern-lab/website",
"version": "6.1.0",
"description": "The website for patternlab.io",
"main": "index.js",
"dependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-rss": "^1.1.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.1.3",
"@tbranyen/jsdom": "^13.0.0",
"concurrently": "^4.1.0",
"html-minifier": "^4.0.0",
"json-to-scss": "^1.6.2",
"nunjucks": "^3.2.3",
"sass": "^1.32.8",
"semver": "^6.3.0",
"slugify": "^1.5.0",
"stalfos": "github:hankchizljaw/stalfos#c8971d22726326cfc04089b2da4d51eeb1ebb0eb"
},
"devDependencies": {
"@11ty/eleventy-navigation": "^0.3.2",
"@erquhart/rollup-plugin-node-builtins": "^2.1.5",
"bl": "^3.0.0",
"chokidar-cli": "^2.1.0",
"cross-env": "^5.2.0",
"make-dir-cli": "^2.0.0",
"prettier": "^2.8.1",
"rollup": "^1.16.1",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.0.3"
},
"scripts": {
"sass:tokens": "npx json-to-scss src/_data/tokens.json src/scss/_tokens.scss",
"sass:process": "yarn sass:tokens && sass src/scss/style.scss dist/css/style.css --style=compressed",
"cms:precompile": "make-dir dist/admin && nunjucks-precompile src/_includes > dist/admin/templates.js -i \"\\.(njk|css|svg)$\"",
"cms:bundle": "rollup --config",
"start": "concurrently \"yarn sass:process --watch\" \"yarn cms:bundle --watch\" \"chokidar \\\"src/_includes/**\\\" -c \\\"yarn cms:precompile\\\"\" \"yarn serve\"",
"serve": "cross-env ELEVENTY_ENV=development npx eleventy --serve",
"production": "yarn sass:process && yarn cms:precompile && yarn cms:bundle && npx eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bradfrost/pl-website-eleventy.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bradfrost/pl-website-eleventy/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/bradfrost/pl-website-eleventy/#readme",
"gitHead": "80f62be442223e09bafb30d0529cbd768e03f2ac",
"engines": {
"node": ">=16.20.0"
}
}