-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.19 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
{
"scripts": {
"start": "npm-run-all --parallel css eleventy browsersync",
"serve": "eleventy --serve",
"eleventy": "eleventy --watch",
"debug": "set DEBUG=* & eleventy",
"css": "postcss src/static/css/tailwind.pcss --o _site/static/css/style.css --watch",
"build": "cross-env NODE_ENV=production eleventy && cross-env NODE_ENV=production postcss src/static/css/tailwind.pcss --o _site/static/css/style.css",
"browsersync": "browser-sync start --server '_site' --files '_site' --port 8080 --no-notify --no-open"
},
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"@tailwindcss/typography": "^0.5.1",
"alpinejs": "^2.6.0",
"browser-sync": "^2.26.14",
"cross-env": "^7.0.2",
"cssnano": "^4.1.10",
"html-minifier": "^4.0.0",
"js-yaml": "^3.14.0",
"luxon": "^1.25.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.11",
"prismjs": "^1.21.0",
"tailwindcss": "^3.0.18"
},
"dependencies": {
"autoprefixer": "^10.1.0",
"postcss": "^8.2.1"
},
"prettier": {
"jsxBracketSameLine": true
}
}