-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.9 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.9 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
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
{
"name": "lowmess",
"version": "5.0.0",
"type": "module",
"description": "The website and portfolio of Alec Lomas",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build --remote",
"preview": "astro preview",
"check": "astro check --minimumFailingSeverity warning",
"astro": "astro",
"prepare": "husky install"
},
"imports": {
"#*": "./src/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lowmess/lowmess.git"
},
"keywords": [
"portfolio",
"frontend",
"design"
],
"author": "Alec Lomas",
"license": "MIT",
"bugs": {
"url": "https://github.com/lowmess/lowmess/issues"
},
"homepage": "https://lowmess.com",
"dependencies": {
"@astrojs/db": "^0.20.1",
"@astrojs/rss": "^4.0.18",
"@astrojs/sitemap": "^3.7.2",
"@shikijs/transformers": "^4.0.2",
"@vercel/analytics": "^2.0.1",
"@vercel/speed-insights": "^2.0.0",
"astro": "^6.1.8",
"markdown-it": "^14.1.1",
"postcss-preset-env": "^11.2.0",
"react": "^19.2.5",
"rss-parser": "^3.13.0",
"sanitize.css": "^13.0.0",
"satori": "^0.26.0",
"sharp": "^0.34.5",
"ultrahtml": "^1.6.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/ts-plugin": "^1.10.7",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.5.0",
"@types/react": "^19.2.14",
"dotenv": "^17.4.2",
"eslint": "^9.39.2",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
},
"lint-staged": {
"!(*.d.ts)*.{js,cjs,mjs,jsx,ts,tsx,astro}": [
"eslint --fix --max-warnings 0 --no-warn-ignored",
"prettier --write"
],
"*.{json,css,md}": [
"prettier --write"
]
}
}