-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.31 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": "interroban.gg",
"version": "4.5.0",
"description": "Personal site, blog, and portfolio of Luke Mitchell, a design director, product designer, and UI developer.",
"private": true,
"type": "module",
"license": "MIT",
"dependencies": {
"@11ty/eleventy": "3.0.0",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"@11tyrocks/eleventy-plugin-lightningcss": "^1.3.0",
"@appnest/masonry-layout": "^2.2.3",
"dotenv": "^16.4.5",
"eleventy-plugin-webmentions": "^2.1.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"simple-git": "^3.27.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@biomejs/biome": "1.9.3",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1"
},
"stylelint": {
"extends": "stylelint-config-standard",
"ignoreFiles": [
"./**/*.js"
],
"rules": {
"media-feature-range-notation": "prefix"
}
},
"scripts": {
"clean": "rm -rf _site .cache",
"start": "npm run build -- --serve --quiet",
"build": "npx @11ty/eleventy",
"test": "npm run lint:css & npm run lint:js & npm run lint:json",
"lint:css": "stylelint ./src/**/*.css",
"lint:js": "npx @biomejs/biome lint ./src/**/*.js",
"lint:json": "npx @biomejs/biome lint ./src/**/*.json"
}
}