-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
46 lines (46 loc) · 1.29 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
{
"name": "website",
"type": "module",
"version": "0.0.1",
"scripts": {
"fmt": "prettier --plugin=prettier-plugin-astro . --write",
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"build": "bun run avatars && astro check && astro build",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky",
"icons": "bun src/lib/iconify/convertCustomIconsToJson.ts",
"avatars": "bun src/lib/getAvatars.ts"
},
"lint-staged": {
"!(src/layouts/*.astro)src/**/*": "bun prettier --plugin=prettier-plugin-astro . --write"
},
"dependencies": {
"@astrojs/check": "^0.5.0",
"@astrojs/sitemap": "^3.1.1",
"@astrojs/svelte": "^5.3.0",
"astro": "^4.5.16",
"fuse.js": "^7.0.0",
"svelte": "^4.2.12",
"typescript": "^5.4.4",
"yaml": "^2.4.0",
"@types/bun": "^1.1.4"
},
"devDependencies": {
"@catppuccin/palette": "^1.1.0",
"@iconify-json/ph": "^1.1.13",
"@iconify-json/simple-icons": "^1.1.106",
"@iconify/svelte": "^4.0.2",
"@iconify/tools": "^4.0.4",
"@iconify/types": "^2.0.0",
"@rollup/plugin-yaml": "^4.1.2",
"astro-icon": "^1.1.0",
"husky": "latest",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.14.0",
"sass": "^1.74.1"
}
}