-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.28 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.28 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
{
"name": "ed-lib",
"version": "0.0.0",
"type": "module",
"description": "Easily write and share edcuational content with educational markdown aka emd!",
"scripts": {
"prestart": "concurrently -n b: npm:build:*",
"format": "prettier --write .",
"build": "concurrently -n b: npm:build:*",
"postbuild": "npx pagefind --site \"_site\"",
"build:css": "postcss \"11ty/_assets/style.postcss\" --verbose --config postcss.config.cjs -o \"_site/style.css\"",
"build:html": "npx @11ty/eleventy",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npx concurrently -n w: npm:watch:*",
"watch:html": "npm run prestart && npx @11ty/eleventy --serve",
"watch:css": "npm run build:css -- --watch"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.2",
"concurrently": "^8.2.2",
"open-props": "^1.5.15",
"postcss": "^8.4.29",
"postcss-cli": "^10.1.0",
"postcss-combine-duplicated-selectors": "^10.0.3",
"postcss-import": "^15.1.0",
"postcss-nesting": "^12.0.1",
"postcss-preset-env": "^9.1.3",
"prettier": "^3.0.3"
},
"dependencies": {
"@ed-components/ed-components": "^0.0.12",
"@zachleat/pagefind-search": "^1.0.2",
"pagefind": "^1.0.3"
}
}