-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1.05 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
{
"scripts": {
"start": "npm-run-all --parallel css eleventy browsersync",
"eleventy": "eleventy --watch",
"debug": "set DEBUG=* & eleventy",
"css": "postcss src/static/css/tailwind.css -o _site/static/css/style.css --watch",
"build": "rimraf _site && cross-env NODE_ENV=production eleventy && cross-env NODE_ENV=production tailwindcss -i src/static/css/tailwind.css -o _site/static/css/style.css",
"browsersync": "browser-sync start --server _site --files _site --port 8080 --no-notify --no-open"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/typography": "^0.5.10",
"alpinejs": "^3.13.0",
"browser-sync": "^2.29.3",
"cross-env": "^7.0.3",
"cssnano": "^6.0.1",
"html-minifier": "^4.0.0",
"js-yaml": "^4.1.0",
"luxon": "^3.4.3",
"npm-run-all": "^4.1.5",
"postcss-cli": "^10.1.0",
"prismjs": "^1.29.0",
"tailwindcss": "^3.3.3"
},
"dependencies": {
"autoprefixer": "^10.4.15",
"postcss": "^8.4.29"
}
}