-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.39 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
{
"name": "john-solly-dev",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build && node process-html.mjs",
"preview": "astro preview",
"astro": "astro",
"lint": "biome lint --no-errors-on-unmatched --files-ignore-unknown=true .",
"lint-fix": "biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true .",
"format": "biome format --no-errors-on-unmatched --files-ignore-unknown=true --write .",
"type-check": "tsc --noEmit -p tsconfig.json",
"prepare": "if [ -z \"$CI\" ]; then husky; fi"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.1",
"@astrojs/ts-plugin": "^1.10.4",
"astro": "^4.16.10",
"globby": "^14.0.1",
"html-minifier": "^4.0.0",
"jsdom": "^24.1.1",
"mdast-util-to-string": "^4.0.0",
"reading-time": "^1.5.0",
"sharp": "^0.33.3",
"tailwindcss": "^3.4.14",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.9.0",
"constructs": "^10.4.2",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"typescript": "^5.6.3"
},
"lint-staged": {
"*": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true",
"biome lint --apply --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}