-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.12 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.12 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
{
"name": "astro-simple-portfolio",
"author": "Samin Yousefnia <hello@samin.dev>",
"description": "A simple portfolio template built with Astro",
"type": "module",
"license": "MIT",
"version": "1.0.3",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier --write .",
"cf-typegen": "wrangler types",
"deploy": "astro build && wrangler pages deploy",
"prepare": "husky"
},
"dependencies": {
"@astrojs/check": "^0.9.4",
"@astrojs/cloudflare": "^12.6.10",
"@astrojs/sitemap": "^3.6.0",
"@tailwindcss/vite": "^4.1.15",
"astro": "^5.15.1",
"astro-font": "^1.1.0",
"tailwindcss": "^4.1.16"
},
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"prettier": "^3.6.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.7.1",
"typescript": "^5.9.3",
"wrangler": "^4.40.3"
},
"lint-staged": {
"*": "pnpm run format"
},
"engines": {
"pnpm": "10.x"
},
"packageManager": "pnpm@10.0.0"
}