-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.61 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
{
"name": "css-for-shadow-dom",
"version": "0.0.1",
"description": "",
"author": "Adobe",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=20.x.x"
},
"scripts": {
"start": "npm run clean && npm run changelogs && cross-env ENV=dev eleventy --serve",
"build": "npm run clean && npm run changelogs && cross-env ENV=prod eleventy",
"build:deploy": "npm run clean && cross-env USE_COMMITTED_DATA=true ENV=prod eleventy",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"clean": "rimraf dist .cache",
"prepare": "husky",
"copyright": "node bin/copyright-header.js",
"changelogs": "node bin/changelogs.js"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.6",
"@11ty/eleventy-fetch": "^5.1.3",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2",
"@shopify/prettier-plugin-liquid": "^1.11.0",
"@spectrum-css/button": "^14.2.0",
"@spectrum-css/tokens": "^16.0.2",
"@spectrum-css/typography": "^8.2.0",
"autoprefixer": "^10.5.4",
"cross-env": "^10.1.0",
"cssnano": "^8.0.4",
"dayjs": "^1.11.21",
"eleventy-plugin-icons": "^4.6.0",
"html-minifier-terser": "^7.2.0",
"husky": "^9.1.7",
"lint-staged": "^17.3.0",
"postcss": "^8.5.26",
"postcss-import": "^16.1.1",
"postcss-import-ext-glob": "^2.1.1",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"slugify": "^1.6.9",
"title-case": "^4.3.2",
"web-features": "^3.34.3"
},
"browserslist": [
"> 0.3%",
"not dead"
],
"lint-staged": {
"*.{js,css,md,liquid}": "prettier --write"
}
}