-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1.14 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
{
"name": "eleventy-web-starter",
"version": "1.7.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": "Dan McClory",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"autoprefixer": "^10.3.1",
"canisoon-lib": "~0.1.2",
"del-cli": "^3.0.1",
"esbuild": "^0.12.15",
"html-minifier": "^4.0.0",
"luxon": "^2.0.1",
"npm-run-all": "^4.1.5",
"postcss-cli": "^8.3.1",
"postcss-import": "^14.0.2",
"tailwindcss": "^2.2.6"
}
}