forked from TylerMRoderick/fernfolio-11ty-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 2.09 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
{
"name": "fernfolio-redux",
"version": "1.0.0",
"description": "A portfolio template built with Eleventy and Decap CMS, remixed from Tyler Roderick's Fernfolio",
"scripts": {
"prebuild": "rimraf _site",
"start": "cross-env npm-run-all build:sass --parallel watch:*",
"build": "cross-env npm-run-all build:sass build:scripts build:eleventy",
"watch:scripts": "esbuild \"./src/assets/js/main.js\" --target=es6 --bundle --outfile=\"./_site/assets/js/main.bundle.js\"",
"build:scripts": "esbuild \"./src/assets/js/main.js\" --target=es6 --bundle --minify --outfile=\"./_site/assets/js/main.bundle.js\"",
"watch:sass": "sass --no-source-map --watch src/assets/scss:_site/assets/css/",
"build:sass": "sass --no-source-map src/assets/scss/main.scss _site/assets/css/main.css",
"watch:eleventy": "eleventy --serve --incremental",
"build:eleventy": "eleventy",
"postbuild": "postcss _site/assets/css/*.css -u autoprefixer cssnano -r --no-map",
"clean": "rimraf './_site'"
},
"repository": {
"type": "git",
"url": "https://github.com/jasonad123/fernfolio-redux"
},
"author": {
"name": "Jason Adle",
"email": "[email protected]",
"url": "https://www.jasonadle.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/tylerMRoderick/fernfolio-11ty-template/issues"
},
"homepage": "https://github.com/jasonad123/fernfolio-redux",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"autoprefixer": "^10.4.20",
"cross-env": "^7.0.3",
"cssnano": "^7.0.6",
"esbuild": "^0.24.0",
"html-minifier-terser": "^7.2.0",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"npm-run-all": "^4.1.5",
"path": "^0.12.7",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-scss": "^4.0.9",
"rimraf": "^6.0.1",
"sass": "^1.80.4",
"turbolinks": "^5.2.0"
},
"dependencies": {
"i": "^0.3.7",
"npm": "^10.9.0"
}
}