forked from webprofusion/acme-clients
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
36
37
38
39
40
41
42
43
44
45
{
"name": "acme-clients",
"version": "1.0.0",
"description": "The definitive list of ACME clients for Let's Encrypt and other ACME enabled CAs",
"scripts": {
"start": "run-p start:*",
"start:eleventy": "eleventy --serve",
"start:postcss": "postcss src/styles/*.css --dir _site --watch",
"build": "run-s clean build:eleventy build:postcss",
"build:eleventy": "cross-env ELEVENTY_PRODUCTION=true eleventy",
"build:postcss": "cross-env NODE_ENV=production postcss src/styles/*.css --dir _site",
"clean": "rimraf _site"
},
"repository": {
"type": "git",
"url": "https://github.com/webprofusion/acme-clients.git"
},
"keywords": [
"eleventy",
"11ty",
"tailwind"
],
"author": "Webprofusion",
"license": "MIT",
"homepage": "https://acmeclients.com",
"bugs": {
"url": "https://github.com/webprofusion/acme-clients/issues"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "6.0.0",
"html-minifier": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "10.1.0",
"postcss-import": "15.1.0",
"rimraf": "5.0.0",
"tailwindcss": "3.3.2"
},
"dependencies": {
"daisyui": "3.0.0"
}
}