generated from chrissy-dev/eleventy-web-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
37
38
39
{
"name": "jamstack-web-starter",
"version": "1.6.1",
"description": "Minimal boilerplate for new projects built with Eleventy, Tailwind, PurgeCSS and PostCSS",
"scripts": {
"clean": "del dist",
"dev:postcss": "postcss src/_assets/stylesheets/*.css -o src/static/app.compiled.css --watch --verbose",
"dev:scripts": "webpack --watch --config webpack.config.js",
"dev:11ty": "eleventy --serve --watch",
"build:postcss": "NODE_ENV=production postcss src/_assets/stylesheets/app.css -o src/_includes/app.compiled.css",
"build:11ty": "ELEVENTY_ENV=production eleventy",
"build:scripts": "NODE_ENV=production webpack -p --config webpack.config.js",
"start": "run-p dev:* --print-label",
"build": "run-s clean build:* --print-label"
},
"author": "Chris Collins",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"autoprefixer": "^9.8.6",
"babel-loader": "^8.1.0",
"del-cli": "^3.0.1",
"html-minifier": "^4.0.0",
"luxon": "^1.25.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^7.1.2",
"postcss-import": "^12.0.1",
"tailwindcss": "^1.8.5",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"@tailwindcss/typography": "^0.4.0",
"markdown-it": "^12.0.4",
"markdown-it-emoji": "^2.0.0"
}
}