-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.14 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
{
"name": "eleventy-starter",
"version": "1.0.0",
"description": "Boilerplate for basic 11ty page",
"main": ".eleventy.js",
"scripts": {
"start": "npx gulp && concurrently \"npx gulp watch\" \"npx eleventy --serve\"",
"production": "NODE_ENV=production npx gulp production && NODE_ENV=production npx eleventy"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@11ty/eleventy": "^3.0.0-beta.1",
"@11ty/eleventy-img": "^5.0.0-beta.10",
"clean-css": "^5.2.4",
"concurrently": "^6.1.0",
"dotenv": "^10.0.0",
"get-google-fonts": "^1.2.2",
"gorko": "^0.9.0",
"gulp": "^4.0.2",
"gulp-clean-css": "^4.3.0",
"gulp-imagemin": "^7.0.1",
"gulp-sass": "^5.1.0",
"gulp-svgmin": "^4.1.0",
"html-minifier": "^4.0.0",
"jsdom": "^19.0.0",
"luxon": "^2.3.1",
"markdown-it": "^10.0.0",
"purgecss": "^4.1.3",
"sass": "^1.45.2"
},
"overrides": {
"@11ty/eleventy": {
"liquidjs": "10.16.4"
}
},
"devDependencies": {
"gulp-minify": "^3.1.0",
"gulp-postcss": "^9.0.1",
"gulp-svgstore": "^7.0.1",
"postcss-preset-env": "^7.4.2"
}
}