-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
48 lines (48 loc) · 1.38 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
{
"name": "jec-11ty-starter",
"description": "11ty starter",
"scripts": {
"clean": "npx del dist",
"serve": "ELEVENTY_ENV=dev npx eleventy --serve",
"prestart": "npm run transform-image",
"start": "npm run serve",
"prebuild": "npm run clean",
"build": "ELEVENTY_ENV=dev npx eleventy",
"build:prod": "ELEVENTY_ENV=prod npx eleventy",
"postbuild:prod": "npm run minify-output",
"predeploy": "npm run build:prod",
"deploy": "npx firebase deploy",
"debug": "DEBUG=* npx eleventy",
"transform-image": "npx gulp -f tasks/transform-image.gulp.js",
"minify-output": "npx gulp -f tasks/minify-output.gulp.js"
},
"husky": {
"hooks": {
"pre-push": "npm run transform-image"
}
},
"author": "Jecelyn Yeen",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.0",
"@11ty/eleventy-plugin-rss": "^1.0.7",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.1",
"date-fns": "^2.14.0",
"del-cli": "^3.0.0",
"firebase-tools": "^8.2.0",
"gulp": "^4.0.2",
"gulp-changed": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-cli": "^2.2.1",
"gulp-htmlmin": "^5.0.1",
"gulp-imagemin": "^7.1.0",
"gulp-rename": "^2.0.0",
"gulp-terser": "^1.2.0",
"husky": "^4.2.5",
"imagemin-webp": "^5.1.0",
"jimp": "^0.12.1",
"outdent": "^0.7.1",
"terser": "^4.7.0",
"through2": "^3.0.1"
}
}