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
|
{
"name": "@polyfrost/website",
"type": "module",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro start",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"test": "vitest"
},
"dependencies": {
"@astrojs/check": "^0.4.1",
"@astrojs/mdx": "^2.0.5",
"@astrojs/rss": "^4.0.2",
"@astrojs/sitemap": "^3.0.5",
"@astrojs/tailwind": "^5.1.0",
"astro": "^4.2.1",
"sass": "^1.70.0",
"smartypants": "^0.2.2",
"tailwindcss": "^3.4.1",
"vitest": "^1.2.1",
"zod": "^3.22.4",
"zod-form-data": "^2.0.2"
},
"devDependencies": {
"@polyfrost/config": "workspace:*",
"@types/node": "~20.11.5",
"node-html-parser": "^6.1.12",
"typescript": "^5.3.3"
}
}
|