-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.26 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
{
"name": "eleventy-starter",
"version": "2.0.0",
"description": "Boilerplate for basic 11ty page",
"main": ".eleventy.js",
"scripts": {
"start": "eleventy --serve --incremental",
"start-production": "NODE_ENV=production eleventy --serve --incremental",
"production": "NODE_ENV=production eleventy",
"serve": "npx serve dist -p 8080"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"browserslist": [
"> 0.2% and not dead and supports css-media-range-syntax"
],
"dependencies": {
"@11ty/eleventy": "^3.0.0-alpha.14",
"@11ty/eleventy-img": "^4.0.2",
"autoprefixer": "^10.4.19",
"dotenv": "^16.4.5",
"eleventy-plugin-svg-sprite": "^2.4.2",
"html-minifier": "^4.0.0",
"jsdom": "^24.1.0",
"luxon": "^3.4.4",
"markdown-it": "^14.1.0",
"purgecss": "^6.0.0",
"tailwindcss": "^3.4.4"
},
"devDependencies": {
"@11ty/eleventy-cache-assets": "^2.3.0",
"@cagov/11ty-build-system": "^1.0.1",
"cssnano": "^7.0.3",
"esbuild": "^0.21.5",
"esbuild-plugin-glob": "^2.2.3",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-import-ext-glob": "^2.1.1",
"postcss-js": "^4.0.1",
"postcss-preset-env": "^9.5.14",
"utopia-core": "^1.4.0"
}
}