-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.33 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.33 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
39
40
41
42
43
44
{
"name": "hitchens-eleventy",
"version": "1.0.0",
"description": "An inarguably well-designed Eleventy theme inspired by Christopher Hitchens",
"scripts": {
"start": "npm run build:css && npm run dev",
"dev": "eleventy --serve",
"build": "npm run build:css && npm run build:eleventy",
"build:eleventy": "eleventy",
"build:css": "node build-css.js",
"watch:css:scss": "sass --watch --load-path=_sass assets/css/main.scss _site/assets/css/main.css",
"watch:css:tailwind": "npx @tailwindcss/cli -i ./assets/css/tailwind.css -o ./_site/assets/css/main.css --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patdryburgh/hitchens.git"
},
"keywords": [
"eleventy",
"eleventy-theme",
"blog",
"minimal",
"starter"
],
"author": "Pat Dryburgh",
"license": "MIT",
"bugs": {
"url": "https://github.com/patdryburgh/hitchens/issues"
},
"homepage": "https://github.com/patdryburgh/hitchens#readme",
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@11ty/eleventy-plugin-rss": "^2.0.4",
"@playwright/test": "^1.56.1",
"@tailwindcss/cli": "^4.1.15",
"autoprefixer": "^10.4.21",
"luxon": "^3.7.2",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"postcss": "^8.5.6",
"sass": "^1.93.2",
"tailwindcss": "^4.1.15"
}
}