-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "windty",
"version": "1.0.0",
"description": "Simple 11ty template with tailwind",
"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/distantcam/windty.git"
},
"keywords": [
"eleventy",
"11ty",
"tailwind"
],
"author": "Cam MacFarland",
"license": "Unlicense",
"homepage": "https://github.com/distantcam/windty#readme",
"bugs": {
"url": "https://github.com/distantcam/windty/issues"
},
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"html-minifier-terser": "^7.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.14"
}
}