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
|
{
"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/mdx": "^1.1.5",
"@astrojs/rss": "^3.0.0",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.2",
"astro": "^4.0.6",
"sass": "^1.69.5",
"tailwindcss": "^3.4.0",
"vitest": "^0.34.6"
},
"devDependencies": {
"@polyfrost/config": "workspace:*",
"@types/node": "~20.10.5",
"node-html-parser": "^6.1.11",
"typescript": "^5.3.3"
}
}
|