-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.3 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.3 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
{
"name": "alexandrehtrb-blog",
"version": "1.0.0",
"description": "",
"scripts": {
"dev": "concurrently --kill-others \"npx @11ty/eleventy --serve --incremental\" \"npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch\"",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy --serve & npx tailwindcss -i ./tailwind.css -o _site/assets/styles/tailwind.css --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "NODE_ENV=production npx @11ty/eleventy ; npx tailwindcss --minify -i ./tailwind.css -o _site/assets/styles/tailwind.css",
"buildWindows": "set NODE_ENV=production&& npx @11ty/eleventy && npx tailwindcss --minify -i ./tailwind.css -o _site/assets/styles/tailwind.css"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "3.1.5",
"@11ty/eleventy-plugin-rss": "3.0.0",
"concurrently": "9.2.1",
"postcss": "8.5.8",
"autoprefixer": "10.4.27",
"html-minifier-terser": "7.2.0",
"htmlencode": "0.0.4",
"markdown-it": "14.1.1",
"markdown-it-anchor": "9.2.0",
"shiki": "4.0.2",
"@shikijs/transformers": "4.0.2",
"terser": "5.47.1",
"@tailwindcss/typography": "0.5.19",
"tailwindcss": "3.4.19"
}
}