This repository has been archived by the owner on Jun 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
46
47
48
49
50
51
52
53
54
{
"name": "sr-11ty-tailwind-alpine-template",
"version": "1.0.0",
"description": "Template for new projects with 11ty, TailwindCSS, TailwindUI, and Alpine.js",
"author": "Shane Robinson",
"license": "MIT",
"bugs": {
"url": "https://github.com/shanerobinson/sr-11ty-tailwind-alpine-template/issues"
},
"homepage": "https://github.com/shanerobinson/sr-11ty-tailwind-alpine-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/shanerobinson/sr-11ty-tailwind-alpine-template.git"
},
"keywords": [
"11ty",
"TailwindCSS",
"TailwindUI",
"Alpine.js",
"webpack",
"PostCSS",
"CSSnano"
],
"scripts": {
"clean": "rimraf dist",
"debug": "set DEBUG=* & eleventy",
"dev:tailwind": "npx tailwindcss -i src/assets/css/tailwind.css -o dist/css/styles.css --watch",
"dev:eleventy": "npx @11ty/eleventy --serve",
"dev": "npm-run-all clean --parallel dev:*",
"build:tailwind": "npx tailwindcss -i src/assets/css/tailwind.css -o dist/css/styles.css --minify",
"build:eleventy": "ELEVENTY_PRODUCTION=true npx @11ty/eleventy",
"build": "NODE_ENV=production npm-run-all clean build:*"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.1.0",
"@tailwindcss/forms": "^0.5.3",
"alpinejs": "^3.10.4",
"dotenv": "^16.0.3",
"eleventy-plugin-svg-sprite": "^1.3.0",
"luxon": "^3.2.1",
"markdown-it": "^13.0.1",
"markdown-it-emoji": "^2.0.2",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"slugify": "^1.6.5",
"tailwindcss": "^3.1.8"
},
"dependencies": {
"debug": "^4.3.4"
}
}