-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
24 lines (24 loc) · 920 Bytes
/
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
{
"name": "laurens.io",
"private": true,
"description": "Personal website and blog of Laurens Groeneveld",
"scripts": {
"serve": "npm run start",
"start": "concurrently \"eleventy --serve\" \"npx tailwindcss -i site/styles/site.css -c tailwind.config.js -o dist/site.css --watch\"",
"build": "ELEVENTY_PRODUCTION=true eleventy & NODE_ENV=production npx tailwindcss -i site/styles/site.css -c tailwind.config.js -o dist/site.css --minify"
},
"keywords": [],
"author": "Laurens Groeneveld <me@laurens.io>",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@tailwindcss/typography": "^0.5.15",
"alpinejs": "^3.14.8",
"concurrently": "^9.1.1",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.17"
}
}