-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.49 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "allerthsbageri.se",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"encrypt:email": "node --import=tsx --env-file .env scripts/encrypt-email.ts"
},
"dependencies": {
"@astrojs/sitemap": "^3.2.1",
"@astrojs/svelte": "^5.7.2",
"@astrojs/tailwind": "^5.1.2",
"@fontsource/italianno": "^5.1.0",
"@fontsource/quattrocento": "^5.1.0",
"@tailwindcss/typography": "^0.5.15",
"astro": "^4.16.9",
"rfc4648": "^1.5.3",
"sharp": "^0.33.5",
"svelte": "^5.1.9",
"tailwindcss": "^3.4.14"
},
"devDependencies": {
"@types/node": "^22.8.7",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.7",
"prettier-plugin-tailwindcss": "^0.6.8",
"tsx": "^4.19.2"
},
"pnpm": {
"overrides": {
"@sveltejs/vite-plugin-svelte": "^4.0.0"
}
},
"prettier": {
"tabWidth": 2,
"singleQuote": true,
"semi": false,
"endOfLine": "lf",
"plugins": [
"prettier-plugin-tailwindcss",
"prettier-plugin-astro",
"prettier-plugin-svelte"
],
"overrides": [
{
"files": "*.astro",
"options": {
"parser": "astro"
}
},
{
"files": "*.svelte",
"options": {
"parser": "svelte"
}
}
]
},
"engines": {
"node": ">= 20",
"pnpm": ">= 9"
}
}