-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.51 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
{
"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",
"test": "vitest",
"prepare": "if [ -z \"$CI\" ]; then husky; fi"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.3",
"@astrojs/vue": "^5.0.6",
"@heroicons/vue": "^2.2.0",
"@neondatabase/serverless": "^0.10.4",
"@types/alpinejs": "^3.13.11",
"@vueuse/core": "^12.5.0",
"alpinejs": "^3.14.7",
"astro": "^5.0.3",
"fuse.js": "^7.0.0",
"globby": "^14.0.2",
"html-minifier": "^4.0.0",
"jsdom": "^24.1.3",
"libphonenumber-js": "^1.11.19",
"tailwindcss": "^3.4.16",
"vue": "^3.5.13"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/aws-lambda": "^8.10.147",
"@types/node": "^22.10.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"typescript": "^5.7.3",
"vitest": "^3.0.5"
},
"lint-staged": {
"*": [
"biome format --write --no-errors-on-unmatched --files-ignore-unknown=true",
"biome lint --write --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}