-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.2 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
{
"name": "text-me-when",
"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 --write --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/alpinejs": "^0.4.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.3",
"@types/alpinejs": "^3.13.11",
"alpinejs": "^3.14.7",
"astro": "^5.0.3",
"globby": "^14.0.2",
"html-minifier": "^4.0.0",
"jsdom": "^24.1.3",
"tailwindcss": "^3.4.16"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.10.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10"
},
"lint-staged": {
"*": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true",
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}