-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.58 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.58 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
51
52
53
54
55
56
57
58
{
"name": "rxdev-man",
"type": "module",
"version": "1.10.3",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build && npm run pagefind",
"pagefind": "npx pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@astrojs/check": "^0.9.8",
"@astrojs/mdx": "^5.0.3",
"@astrojs/sitemap": "^3.7.2",
"@astrojs/vercel": "^10.0.4",
"@iconify-json/fa6-brands": "^1.2.6",
"@iconify-json/heroicons": "^1.2.2",
"@iconify-json/mdi": "^1.2.3",
"@iconify-json/ri": "^1.2.10",
"@supabase/supabase-js": "^2.84.0",
"astro": "^6.1.4",
"astro-auto-import": "^0.4.5",
"astro-icon": "^1.1.5",
"astro-pagefind": "^1.8.5",
"typescript": "^5.9.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@antfu/eslint-config": "^6.4.2",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.6",
"@semantic-release/npm": "^13.1.5",
"conventional-changelog-conventionalcommits": "^9.1.0",
"eslint": "^9.39.1",
"eslint-plugin-astro": "^1.5.0",
"eslint-plugin-format": "^1.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"semantic-release": "^25.0.3"
},
"overrides": {
"minimatch": "^10.2.3",
"path-to-regexp": "^6.3.0"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,mdx,astro}": [
"eslint --fix"
]
}
}