-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.35 KB
/
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
30
31
32
33
34
35
36
37
38
39
{
"name": "lyza-dot-11ty",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rm -rf _site; mkdir _site",
"build:css": "tailwindcss -c styles/tailwind.config.js -i styles/tailwind.css -o _site/styles.css",
"build:11ty": "npx @11ty/eleventy",
"build:ts": "tsc --outDir src/_lib",
"build": "npm-run-all -s clean build:11ty build:css",
"watch:11ty": "eleventy --serve --quiet",
"watch:css": "tailwindcss -c styles/tailwind.config.js -i styles/tailwind.css -o _tmp/styles.css --watch --postcss",
"watch:ts": "tsc --outDir src/_lib --watch",
"start": "ELEVENTY_ENV=development npm-run-all clean build:ts -p watch:* -- --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/typography": "^0.5.13",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.0.0",
"autoprefixer": "^10.4.19",
"js-yaml": "^4.1.0",
"markdown-it-anchor": "^9.0.1",
"markdown-it-footnote": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.40",
"prettier": "^3.3.3",
"prettier-plugin-jinja-template": "^1.4.1",
"prettier-plugin-tailwindcss": "^0.6.5",
"tailwindcss": "^3.4.7",
"typescript": "^5.5.4"
}
}