-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 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
{
"name": "astro-portfolio",
"type": "module",
"version": "1.0.0",
"scripts": {
"dev": "wrangler types && astro dev",
"start": "wrangler types && astro dev",
"build": "wrangler types && astro check && astro build",
"preview": "wrangler pages dev ./dist",
"astro": "astro",
"lint": "prettier --write --plugin-search-dir=. ./src"
},
"dependencies": {
"@astrojs/cloudflare": "^12.6.12",
"@iconify-json/mdi": "^1.2.3",
"@tailwindcss/vite": "^4.1.18",
"astro": "^5.16.12",
"astro-icon": "^1.1.5",
"tailwindcss": "^4.1.18"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"sharp": "^0.34.5",
"typescript": "^5.9.3",
"wrangler": "^4.59.3"
},
"pnpm": {
"overrides": {
"lodash": ">=4.17.23",
"undici": ">=7.18.2",
"wrangler": ">=4.59.1"
}
}
}