-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
94 lines (94 loc) · 2.99 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "yunielacosta.com",
"version": "1.0.7",
"private": true,
"type": "module",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"check": "astro check",
"build": "astro build",
"build:docker": "pnpm run build && docker build -t yap .",
"preview": "astro preview",
"prepare": "husky install",
"clean": "rm -rf .astro dist",
"format": "prettier --write . --plugin=prettier-plugin-astro",
"lint:eslint": "eslint .",
"lint:eslint:fix": "eslint . --fix",
"test": "npx -y concurrently \"pnpm run test:unit\" \"pnpm run test:e2e\"",
"test:unit": "vitest",
"test:playwright": "playwright test",
"test:playwright:ui": "playwright test --ui",
"test:e2e": "pnpm run test:playwright"
},
"devDependencies": {
"@astrojs/rss": "4.0.11",
"@astrojs/sitemap": "3.2.1",
"@astrojs/tailwind": "5.1.4",
"@iconify-json/akar-icons": "^1.2.2",
"@iconify-json/charm": "^1.2.2",
"@iconify-json/cib": "^1.2.2",
"@iconify-json/clarity": "^1.2.2",
"@iconify-json/ic": "^1.2.2",
"@iconify-json/ion": "^1.2.2",
"@iconify-json/mdi": "^1.2.2",
"@iconify-json/ph": "^1.2.2",
"@iconify-json/ri": "^1.2.5",
"@iconify-json/simple-icons": "^1.2.20",
"@iconify-json/teenyicons": "^1.2.2",
"@iconify-json/uit": "^1.2.3",
"@playwright/test": "1.49.1",
"@semantic-release/exec": "^6.0.3",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/forms": "0.5.10",
"@tailwindcss/typography": "0.5.16",
"@typescript-eslint/eslint-plugin": "8.20.0",
"@typescript-eslint/parser": "8.20.0",
"@vite-pwa/astro": "^0.5.0",
"@vueuse/core": "12.4.0",
"astro": "5.1.7",
"astro-compress": "2.3.6",
"astro-critters": "2.2.1",
"astro-icon": "1.1.5",
"astro-robots-txt": "1.0.0",
"astro-seo": "0.8.4",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dompurify": "3.2.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-astro": "^1.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.32.0",
"flowbite": "^2.5.2",
"husky": "9.1.7",
"locale-emoji": "0.3.0",
"marked": "15.0.6",
"mdast-util-to-string": "4.0.0",
"nanostores": "0.11.3",
"postcss-nesting": "13.0.1",
"postcss-preset-env": "10.1.3",
"prettier": "3.4.2",
"prettier-plugin-astro": "0.14.1",
"prettier-plugin-tailwindcss": "0.6.10",
"reading-time": "1.5.0",
"rehype-accessible-emojis": "^0.3.2",
"remark-toc": "^9.0.0",
"tailwindcss": "3.4.17",
"vitest": "3.0.0-beta.3",
"workbox-window": "^7.3.0"
},
"dependencies": {
"@astrojs/ts-plugin": "^1.10.4",
"@astrojs/vue": "^5.0.5",
"@vueuse/integrations": "^12.0.0",
"fuse.js": "^7.0.0",
"globals": "^15.14.0",
"sass": "1.83.4",
"sharp": "0.33.5",
"vue": "^3.5.13"
},
"packageManager": "[email protected]"
}