-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.5 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.5 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
77
78
79
80
81
82
83
84
85
{
"name": "mh-photography.com",
"type": "module",
"version": "2.9.0",
"license": "LICENSE",
"private": true,
"description": "MH Photography",
"keywords": [
"website",
"photography",
"personal-website",
"portfolio-website"
],
"issues": "https://github.com/MH-Photo/website/issues",
"repository": {
"type": "git",
"url": "https://github.com/MH-Photo/website.git"
},
"homepage": "https://mh-photography.com",
"engines": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@biomejs/biome": "^2.2.7",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@csstools/postcss-oklab-function": "^4.0.12",
"@hint/formatter-codeframe": "^3.1.36",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.32.1",
"autoprefixer": "^10.4.21",
"babel-loader": "^10.0.0",
"browserslist": "^4.27.0",
"concurrently": "^9.2.1",
"cssnano": "^7.1.1",
"cssremedy": "^0.1.0-beta.2",
"hint": "^7.1.13",
"husky": "^9.1.7",
"image-size": "^1.2.0",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-nesting": "^13.0.0",
"postcss-preset-env": "^10.4.0",
"prettier": "^3.6.2",
"puppeteer": "^24.26.1",
"semantic-release": "^25.0.1",
"sharp": "^0.34.4",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-minify": "^2.1.0",
"wait-on": "^9.0.1"
},
"optionalDependencies": {
"lint-staged": "^16.2.6"
},
"scripts": {
"start": "astro dev",
"start:prod": "astro preview --host",
"build": "astro build",
"build:img": "node src/utils/sharp.cjs",
"lint": "prettier --check --ignore-unknown --no-error-on-unmatched-pattern . && biome ci .",
"lint:fix": "prettier --write --ignore-unknown --no-error-on-unmatched-pattern .&& biome check . --write",
"hint": "wait-on -t 30s tcp:localhost:4321 && hint http://localhost:4321/",
"test": "concurrently 'npm:test:*'",
"test:hint": "concurrently \"npm:start:prod\" \"npm:hint\" --kill-others --s first",
"release": "semantic-release",
"postversion": "npm run lint:fix",
"prepare": "husky",
"git:pre-commit": "lint-staged",
"git:pre-push": "npm run build && npm run test"
},
"dependencies": {
"@astrojs/sitemap": "^3.6.0",
"@fontsource-variable/noto-serif-display": "^5.2.9",
"@fontsource/caveat": "^5.2.8",
"@fontsource/gfs-didot": "^5.2.8",
"@fontsource/titillium-web": "^5.2.8",
"astro": "^5.15.2"
}
}