-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 927 Bytes
/
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
{
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@kevingimbel/eleventy-plugin-mermaid": "^2.2.1",
"@tailwindcss/typography": "^0.5.10",
"autoprefixer": "^10.4.17",
"bib2json": "^0.0.1",
"cssnano": "^6.0.5",
"daisyui": "^4.7.2",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.35",
"slugify": "^1.6.6",
"tailwindcss": "^3.4.1",
"theme-change": "^2.5.0"
},
"scripts": {
"start": "npm-run-all -p dev:*",
"build": "run-s build:*",
"dev:11ty": "eleventy --serve --port=8081",
"dev:css": "tailwindcss -i src/assets/css/tailwind.css -o build/assets/css/tailwind.css --watch --postcss",
"build:11ty": "eleventy",
"build:css": "tailwindcss -i src/assets/css/tailwind.css -o build/assets/css/tailwind.css --postcss"
},
"dependencies": {
"js-yaml": "^4.1.0"
}
}