-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
38 lines (38 loc) · 1 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
{
"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.1.6",
"@astrojs/tailwind": "^5.1.0",
"@fontsource/inter": "^5.0.17",
"astro": "^4.11.5",
"framer-motion": "^11.0.24",
"react-markdown": "^9.0.0",
"tailwindcss": "^3.4.3"
},
"devDependencies": {
"@astrojs/react": "^3.6.0",
"@tailwindcss/typography": "^0.5.12",
"@typescript-eslint/parser": "^7.4.0",
"cspell": "^8.13.2",
"eslint": "^8.57.0",
"eslint-plugin-astro": "^0.33.1",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}