-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.48 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.48 KB
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
48
49
50
51
52
53
{
"name": "phiilu.com",
"version": "1.0.0",
"type": "module",
"engines": {
"node": ">=20 <22"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint 'src/**/*.{js,ts,tsx,astro}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx,astro}' --fix",
"prettier": "prettier --write ."
},
"dependencies": {
"@astrojs/mdx": "^2.3.1",
"@astrojs/react": "^3.6.3",
"@astrojs/rss": "^4.0.9",
"@astrojs/sitemap": "^3.2.1",
"@astrojs/tailwind": "^5.1.2",
"@astrojs/vercel": "^7.8.2",
"@headlessui/react": "^1.7.19",
"@heroicons/react": "^2.2.0",
"@sindresorhus/slugify": "^2.2.1",
"@tailwindcss/typography": "^0.5.15",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"astro": "^4.16.15",
"clsx": "^2.1.1",
"date-fns": "^3.6.0",
"framer-motion": "^11.11.17",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.15"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-astro": "^0.31.4",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.2",
"prettier": "^3.4.1",
"prettier-plugin-astro": "^0.13.0"
}
}