This repository has been archived by the owner on Feb 13, 2023. It is now read-only.
generated from yinkakun/eleventy-duo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.41 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
{
"name": "eleventy-duo",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@11ty/eleventy": "^0.11.1",
"@11ty/eleventy-img": "^0.6.0",
"@11ty/eleventy-plugin-rss": "^1.0.9",
"@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@fullhuman/postcss-purgecss": "^3.1.3",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^8.0.0",
"css-loader": "^5.0.1",
"cssnano": "^4.1.10",
"eleventy-plugin-reading-time": "^0.0.1",
"gh-pages": "^3.1.0",
"mini-css-extract-plugin": "^1.3.3",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.1",
"postcss-color-mod-function": "^3.0.3",
"postcss-import": "^14.0.0",
"postcss-loader": "^4.1.0",
"postcss-preset-env": "^6.7.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-manifest-plugin": "^3.0.0"
},
"scripts": {
"dev": "run-p dev:*",
"start": "eleventy --serve",
"build": "run-s clean build:assets build:site",
"dev:assets": "APP_ENV=development webpack --mode production --watch",
"dev:site": "APP_ENV=development eleventy --serve",
"build:assets": "webpack --mode production",
"build:site": "eleventy",
"clean": "rm -rf ./public",
"predeploy": "yarn build",
"deploy": "gh-pages -d public"
},
"dependencies": {
"remove": "^0.1.5"
}
}