-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.01 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.01 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
{
"name": "eleventy-daisyui-template",
"version": "2.0.1",
"description": "A custom responsive template for Eleventy using DaisyUI.",
"author": "EliCarenza",
"license": "MIT-0",
"scripts": {
"start": "concurrently \"npm run tailwind-watch\" \"eleventy --serve\"",
"tailwind": "tailwindcss -i ./src/assets/css/tailwind-in.css -o ./src/assets/css/tailwind-out.css --minify",
"tailwind-watch": "tailwindcss -i ./src/assets/css/tailwind-in.css -o ./src/assets/css/tailwind-out.css --watch --minify",
"build": "npm run tailwind && eleventy"
},
"keywords": [
"11ty",
"daisyui",
"eleventy",
"tailwind",
"tailwindcss"
],
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@tailwindcss/typography": "^0.5.9",
"concurrently": "^9.0.1",
"daisyui": "^5.0.9",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.17"
},
"dependencies": {
"@11ty/eleventy-plugin-rss": "^2.0.2",
"json5": "^2.2.3",
"luxon": "^3.5.0",
"nunjucks-date-filter": "^0.1.1"
}
}