-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
62 lines (62 loc) · 2.04 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
55
56
57
58
59
60
61
62
{
"name": "smix-eleventy-starter",
"version": "0.0.8",
"description": "A gulp-based starter kit for @11ty/eleventy.",
"main": "",
"engines": {
"node": "^16",
"npm": "^8"
},
"scripts": {
"dev:clean": "rm -rf dist && mkdir -p dist/assets",
"dev:11ty": "eleventy --port 8080 --serve --incremental",
"dev:js": "esbuild --watch --bundle --sourcemap --outfile=dist/assets/js/index.js src/assets/js/index.js",
"dev:jsb": "esbuild --watch --bundle --sourcemap --outfile=dist/assets/js/$npm_config_out src/assets/js/$npm_config_in",
"dev:css": "postcss src/assets/css/style.css --output dist/assets/css/style.css --watch",
"dev:watchers": "run-p dev:js dev:css dev:11ty",
"dev": "run-s dev:clean dev:watchers",
"prod": "run-s prod:js prod:css prod:11ty",
"prod:css": "postcss src/assets/css/style.css --output dist/assets/css/style.css",
"prod:11ty": "eleventy",
"prod:js": "esbuild --minify --bundle --outfile=dist/assets/js/index.js src/assets/js/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"author": {
"name": "Ru Singh",
"email": "hello@rusingh.com",
"url": "https://rusingh.com/"
},
"license": "GNU GPLv3",
"devDependencies": {
"husky": "^4.3.8",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.2"
},
"dependencies": {
"@11ty/eleventy": "^1.0.0",
"@11ty/eleventy-img": "^2.0.1",
"@11ty/eleventy-plugin-rss": "^1.1.1",
"@11ty/eleventy-plugin-syntaxhighlight": "^4.0.0",
"@hirusi/eleventy-plugin-safe-external-links": "^0.14.3",
"@sardine/eleventy-plugin-tinyhtml": "^0.2.0",
"autoprefixer": "^10.4.2",
"cssnano": "^5.1.14",
"date-fns": "^2.20.2",
"date-fns-tz": "^1.1.3",
"eleventy-plugin-typeset": "github:liamfiddler/eleventy-plugin-typeset",
"esbuild": "^0.15.13",
"esm": "^3.2.25",
"lodash.merge": "^4.6.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.7",
"postcss-cli": "^10.0.0",
"postcss-import": "^15.0.0",
"postcss-preset-env": "^7.4.1"
},
"browserslist": ">1%, Firefox ESR, last 2 versions"
}