-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 2.75 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "brianm.me",
"version": "1.0.0",
"private": true,
"description": "Website for Brian Mitchell",
"scripts": {
"prettier": "prettier --write '**/*.{js,mjs,pcss,css,json,md,yml,webc}'",
"start": "run-p start:js start:css start:11ty",
"prebuild": "rimraf _site",
"build": "run-s build:js build:css build:11ty",
"start:css": "postcss src/assets/css/*.pcss -d _site/assets/css --ext css -w",
"build:css": "postcss src/assets/css/*.pcss -d _site/assets/css --ext css --env production",
"start:js": "rollup -c -w",
"build:js": "rollup -c",
"start:11ty": "eleventy --serve",
"build:11ty": "eleventy"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BrianMitchL/brianm.me.git"
},
"author": "Brian Mitchell",
"dependencies": {
"@primer/octicons": "^19.12.0",
"canvas-confetti": "^1.9.3",
"csshake": "^1.7.0",
"prism-themes": "^1.9.0",
"svelte": "^4.2.19",
"svelte-compare-image": "^3.0.0"
},
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@11ty/eleventy-fetch": "^4.0.1",
"@11ty/eleventy-navigation": "^0.3.5",
"@11ty/eleventy-plugin-bundle": "^1.0.5",
"@11ty/eleventy-plugin-rss": "^1.2.0",
"@11ty/eleventy-plugin-syntaxhighlight": "^5.0.0",
"@11ty/eleventy-plugin-webc": "^0.11.2",
"@11tyrocks/eleventy-plugin-emoji-readtime": "^1.0.1",
"@csstools/postcss-oklab-function": "^4.0.5",
"@quasibit/eleventy-plugin-sitemap": "^2.2.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@sindresorhus/slugify": "^1.1.2",
"@types/markdown-it": "^14.1.2",
"autoprefixer": "^10.4.20",
"cssnano": "^7.0.6",
"dotenv": "^16.4.5",
"eleventy-plugin-emoji": "^1.1.0",
"eleventy-plugin-excerpt": "^1.1.2",
"eleventy-plugin-og-image": "^2.1.3",
"html-minifier-terser": "^7.2.0",
"js-yaml": "^4.1.0",
"luxon": "^3.5.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-toc-done-right": "^4.2.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nesting": "^13.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.24.3",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-svelte": "^7.2.2",
"sharp": "^0.32.6",
"terser": "^5.36.0"
},
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": "*.webc",
"options": {
"parser": "html"
}
}
]
},
"engines": {
"node": ">=20.12.0"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead",
"not op_mini all"
]
}