-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
33 lines (33 loc) · 1.21 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
{
"name": "eleventy-web-starter",
"version": "2.0.0",
"description": "Eleventy Web Starter is a lightweight Eleventy boilerplate utilising, ESBuild Tailwind and PostCSS",
"scripts": {
"clean": "del dist",
"dev:postcss": "postcss src/_assets/css/*.css -o src/static/build/styles.min.css --watch --verbose",
"dev:scripts": "esbuild src/_assets/scripts/scripts.js --bundle --watch --outfile=src/static/build/scripts.min.js",
"dev:11ty": "eleventy --serve --watch",
"build:postcss": "NODE_ENV=production postcss src/_assets/css/styles.css -o src/_includes/styles.min.css",
"build:11ty": "ELEVENTY_ENV=production eleventy",
"build:scripts": "esbuild src/_assets/scripts/scripts.js --bundle --minify --outfile=dist/static/build/scripts.min.js",
"dev": "run-p dev:*",
"build": "run-s clean build:*"
},
"author": "Chris Collins",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "3.0.0-alpha.20",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"del-cli": "^5.1.0",
"esbuild": "^0.24.0",
"htmlnano": "^2.1.1",
"luxon": "^3.5.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"tailwindcss": "^3.4.13",
"terser": "^5.34.1"
}
}