-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.63 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
46
47
48
49
50
{
"name": "beeps.website",
"version": "3.0.0",
"description": "beep's funky website.",
"type": "module",
"scripts": {
"start": "npm run serve",
"clean": "rm -rf _site",
"serve": "npm run clean && ENVIRONMENT=dev npx @11ty/eleventy --serve",
"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 <[email protected]>",
"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.0.0",
"@11ty/eleventy-img": "^5.0.0",
"@11ty/eleventy-plugin-directory-output": "^1.0.1",
"@11ty/eleventy-plugin-rss": "^2.0.2",
"cssnano": "^7.0.6",
"eleventy-plugin-toc": "^1.1.5",
"glob": "^11.0.0",
"highlight.js": "^11.10.0",
"husky": "^9.1.7",
"jsdom": "^26.0.0",
"lint-staged": "^15.2.10",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"postcss": "^8.4.49",
"postcss-preset-env": "^10.1.3",
"prettier": "^3.4.2",
"sanitize-html": "^2.13.1",
"sass": "^1.83.1"
},
"lint-staged": {
"!_site/**/*": "prettier --write --ignore-unknown"
}
}