-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.58 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.58 KB
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
48
{
"name": "beeps.website",
"version": "3.0.0",
"description": "beeps' funky website.",
"type": "module",
"scripts": {
"start": "npm run serve",
"clean": "rm -rf _site",
"serve": "npm run clean && ENVIRONMENT=dev npx @11ty/eleventy --serve --incremental",
"build": "npm run clean && ENVIRONMENT=prod npx @11ty/eleventy && npm run lint:build",
"lint": "npx prettier --write --ignore-unknown . '!_site/**/*'",
"lint:build": "npx prettier --write --ignore-unknown --no-config --print-width=1000 --use-tabs=true '_site/**/*'",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/querkmachine/beeps.website.git"
},
"author": "Kim 'beeps' Grey <hi@berly.kim>",
"license": "MIT",
"bugs": {
"url": "https://github.com/querkmachine/beeps.website/issues"
},
"homepage": "https://github.com/querkmachine/beeps.website#readme",
"browserslist": "last 2 versions and last 2 years and not dead",
"devDependencies": {
"@11ty/eleventy": "3.1.5",
"@11ty/eleventy-img": "^6.0.4",
"@11ty/eleventy-plugin-directory-output": "^1.0.2",
"@11ty/eleventy-plugin-rss": "^3.0.0",
"cssnano": "^7.1.7",
"glob": "^13.0.6",
"highlight.js": "^11.11.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"luxon": "^3.7.2",
"markdown-it": "^14.1.1",
"markdown-it-anchor": "^9.2.0",
"node-html-parser": "^7.1.0",
"postcss": "^8.5.9",
"postcss-preset-env": "^11.2.1",
"prettier": "^3.8.3",
"sass": "^1.99.0"
},
"lint-staged": {
"!_site/**/*": "prettier --write --ignore-unknown"
}
}