-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.73 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
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "portfolio",
"description": "My portfolio is my small personal slice of the Internet.",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "pnpm lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "astro check",
"dev": "astro dev --host",
"build": "astro build && pnpm print",
"preview": "astro preview --host --port 4322",
"astro": "astro",
"print": "start-server-and-test preview http://localhost:4322/ 'tsx src/scripts/print.ts'"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.1",
"@astrojs/check": "^0.9.4",
"@astrojs/mdx": "^4.0.4",
"@astrojs/rss": "^4.0.11",
"@iconify-json/lucide": "^1.2.22",
"@iconify-json/simple-icons": "^1.2.19",
"@recivi/schema": "^0.0.2",
"@tailwindcss/vite": "^4.0.0",
"@types/alpinejs": "^3.13.11",
"@types/node": "^22.10.1",
"@vercel/og": "^0.6.4",
"alpinejs": "^3.14.7",
"astro": "^5.1.4",
"chalk": "^5.3.0",
"chokidar": "^4.0.3",
"puppeteer": "^23.11.1",
"satori-html": "^0.3.2",
"start-server-and-test": "^2.0.9",
"tailwindcss": "^4.0.0",
"tailwindcss-safe-area": "^0.6.0",
"tsx": "^4.19.2"
},
"devDependencies": {
"@eslint/compat": "^1.2.4",
"@eslint/js": "^9.16.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^9.16.0",
"eslint-plugin-astro": "^1.3.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.2",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-tailwindcss": "^0.6.11",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"packageManager": "[email protected]"
}