generated from chrissy-dev/eleventy-web-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.25 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
{
"name": "eleventy-web-starter",
"version": "1.8.0",
"description": "Eleventy Web Starter is a lightweight Eleventy boilerplate utilising, ESBuild Tailwind and PostCSS",
"scripts": {
"clean": "del dist",
"dev:postcss": "postcss src/_assets/stylesheets/*.css -o src/static/styles.min.css --watch --verbose",
"dev:scripts": "esbuild src/_assets/scripts/app.js --bundle --watch --outfile=src/static/app.min.js",
"dev:11ty": "eleventy --serve --watch",
"build:postcss": "NODE_ENV=production postcss src/_assets/stylesheets/styles.css -o src/_includes/styles.min.css",
"build:11ty": "ELEVENTY_ENV=production eleventy",
"build:scripts": "esbuild src/_assets/scripts/app.js --bundle --minify --outfile=dist/static/app.min.js",
"start": "run-p dev:*",
"build": "run-s clean build:*"
},
"author": "Chris Collins",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^1.0.0",
"@jamesives/github-pages-deploy-action": "^4.2.2",
"autoprefixer": "^10.4.2",
"del-cli": "^4.0.1",
"esbuild": "^0.14.11",
"html-minifier": "^4.0.0",
"luxon": "^2.3.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.0.2",
"tailwindcss": "^3.0.13"
},
"dependencies": {
"@tailwindcss/typography": "^0.5.0"
}
}