generated from codingpotions/nulite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.1 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
{
"name": "milehighcoder",
"version": "1.0.0",
"description": "Personal blog for milehighcoder.com",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run css && npx @11ty/eleventy",
"css": "tailwindcss -i ./src/_includes/css/base.css -o ./_site/output.css --minify",
"start": "concurrently \"npm:dev:*\"",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve --quiet",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy",
"dev:eleventy": "npx @11ty/eleventy --serve --quiet",
"dev:css": "tailwindcss -i ./src/_includes/css/base.css -o ./_site/output.css --watch"
},
"keywords": [
"eleventy",
"starter"
],
"author": "Diego López",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/typography": "^0.5.15",
"concurrently": "^9.1.2",
"daisyui": "^4.12.14",
"tailwindcss": "^3.4.16"
},
"dependencies": {
"clean-css": "^5.3.3"
}
}