-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.32 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
{
"name": "website",
"type": "module",
"version": "0.0.1",
"private": true,
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"cspell": "cspell \"**\""
},
"dependencies": {
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.4",
"@fontsource/inter": "^5.1.1",
"@radix-ui/react-label": "^2.1.1",
"@radix-ui/react-slider": "^1.2.2",
"astro": "^5.1.2",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"framer-motion": "^11.15.0",
"lucide-react": "^0.469.0",
"react-markdown": "^9.0.0",
"sharp": "^0.33.5",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^3.4.17",
"tailwindcss-animate": "^1.0.7"
},
"devDependencies": {
"@astrojs/react": "^4.1.2",
"@tailwindcss/typography": "^0.5.12",
"@typescript-eslint/parser": "^8.19.0",
"cspell": "^8.17.1",
"eslint": "^8.57.1",
"eslint-plugin-astro": "^1.3.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"react": "^19.0.0",
"react-compiler-runtime": "^19.0.0-beta-55955c9-20241229",
"react-dom": "^19.0.0"
}
}