-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 985 Bytes
/
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
{
"name": "eleventy-template-site",
"version": "0.0.1",
"description": "Basic template for an Eleventy site with Vite, Sass, and Bootstrap Icons",
"main": "index.js",
"scripts": {
"build": "npx @11ty/eleventy",
"start": "npx @11ty/eleventy --serve",
"debug": "DEBUG=Eleventy* npx @11ty/eleventy",
"debugstart": "DEBUG=Eleventy* npx @11ty/eleventy --serve",
"benchmark": "DEBUG=Eleventy:Benchmark* npx @11ty/eleventy"
},
"keywords": [],
"author": "Johan Martin",
"license": "ISC",
"devDependencies": {
"@11ty/eleventy": "^3.0.0",
"@11ty/eleventy-plugin-vite": "^5.0.2",
"cssnano": "^7.0.6",
"postcss": "^8.5.1",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"sass": "^1.83.4",
"stylelint": "^16.14.0",
"stylelint-config-standard": "^37.0.0"
},
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"dependencies": {
"bootstrap-icons": "^1.11.3"
}
}