-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.12 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.12 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
{
"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",
"dev:webpack": "webpack --mode development",
"dev:eleventy": "eleventy --serve",
"dev:postcss": "postcss src/assets/css/tailwind.css -o dist/assets/tailwind.css --watch",
"dev": "npm-run-all clean --parallel dev:* --print-label",
"build:webpack": "webpack --mode production",
"build:eleventy": "ELEVENTY_ENV=production eleventy",
"build:postcss": "NODE_ENV=production postcss src/assets/css/tailwind.css -o dist/assets/tailwind.css",
"build": "run-s clean build:* --print-label"
},
"devDependencies": {
"@11ty/eleventy": "^1.0.1",
"@11ty/eleventy-navigation": "^0.3.2",
"@11ty/eleventy-plugin-rss": "^1.1.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.6",
"@babel/core": "^7.12.13",
"@babel/preset-env": "^7.12.13",
"@tailwindcss/custom-forms": "^0.2.1",
"alpinejs": "^2.8.0",
"autoprefixer": "^9.8.6",
"axios": "^0.21.2",
"babel-loader": "^8.2.2",
"clean-css": "^4.2.3",
"cssnano": "^5.1.7",
"dotenv": "^8.2.0",
"eleventy-plugin-svg-sprite": "^1.0.2",
"html-minifier": "^4.0.0",
"luxon": "^1.25.0",
"markdown-it": "^12.3.2",
"markdown-it-emoji": "^1.4.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.1",
"postcss-cli": "^8.0",
"postcss-import": "^12.0.1",
"rimraf": "^3.0.2",
"slugify": "^1.4.6",
"tailwindcss": "^3.0.24",
"terser-webpack-plugin": "^4.2.3",
"webpack": "^5.72.0",
"webpack-cli": "^4"
}
}