-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "skeleventy",
"version": "1.0.0",
"description": "Skeleventy - A skeleton boilerplate built with Eleventy",
"scripts": {
"dev": "ELEVENTY_ENV=development eleventy --config=eleventy.config.js --serve & gulp dev",
"build": "gulp build && eleventy --config=eleventy.config.js && cp _redirects dist/_redirects"
},
"repository": {
"type": "git",
"url": "https://github.com/josephdyer/skeleventy.git"
},
"author": "Joseph Dyer",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.12.1",
"@babel/core": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@fullhuman/postcss-purgecss": "^1.1.0",
"gulp": "^3.9.1",
"gulp-babel": "^8.0.0",
"gulp-clean-css": "^3.10.0",
"gulp-concat": "^2.6.1",
"gulp-notify": "^3.2.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^7.0.1",
"gulp-rename": "^1.2.3",
"gulp-run-command": "^0.0.9",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.1",
"html-minifier": "^3.5.21",
"tailwindcss": "1.8.10"
},
"dependencies": {
"@tailwindcss/ui": "0.6.2",
"node": "^10.20.1"
}
}