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
|
{
"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": "^2.0.2",
"@astrojs/rss": "^4.0.1",
"@astrojs/sitemap": "^3.0.3",
"@astrojs/tailwind": "^5.0.4",
"astro": "^4.0.7",
"fullpage.js": "^4.0.20",
"locomotive-scroll": "^4.1.4",
"sass": "^1.69.5",
"tailwindcss": "^3.4.0",
"vitest": "^1.1.0"
},
"devDependencies": {
"@polyfrost/config": "workspace:*",
"@types/node": "~20.10.5",
"node-html-parser": "^6.1.12",
"typescript": "^5.3.3"
}
}
|