-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "astro-audacity",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"test": "bun test",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"format": "prettier . --write",
"format:check": "prettier . --check",
"prepare": "husky"
},
"dependencies": {
"@astrojs/react": "^4.4.2",
"@astrojs/sitemap": "^3.7.0",
"@astrojs/tailwind": "^6.0.2",
"@fontsource-variable/signika": "^5.2.8",
"@fontsource/twinkle-star": "^5.2.8",
"@types/react": "^18.3.28",
"@types/react-dom": "^18.3.7",
"astro": "^5.17.2",
"astro-compressor": "^1.2.0",
"astro-icon": "^1.1.5",
"astro-lazy-youtube-embed": "^0.5.5",
"classnames": "^2.5.1",
"platform": "^1.3.6",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.19"
},
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@iconify-json/fa6-brands": "^1.2.6",
"@tailwindcss/typography": "^0.5.19",
"@types/bun": "^1.3.9",
"@types/platform": "^1.3.6",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"postcss-nesting": "13",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{astro,cjs,css,js,json,jsx,md,mjs,ts,tsx,yaml,yml}": "prettier --write"
}
}